Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
17b93949
Commit
17b93949
authored
Apr 06, 2008
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed a rare crash and slightly cleaned the sprefs
parent
e447803e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
4 deletions
+3
-4
modules/gui/macosx/intf.m
modules/gui/macosx/intf.m
+2
-1
modules/gui/macosx/simple_prefs.m
modules/gui/macosx/simple_prefs.m
+1
-3
No files found.
modules/gui/macosx/intf.m
View file @
17b93949
...
...
@@ -1870,7 +1870,8 @@ static VLCMain *_o_sharedMainInstance = nil;
vlc_object_kill
(
p_intf
);
/* Go back to Run() and make libvlc exit properly */
longjmp
(
jmpbuffer
,
1
);
if
(
jmpbuffer
)
longjmp
(
jmpbuffer
,
1
);
/* not reached */
}
...
...
modules/gui/macosx/simple_prefs.m
View file @
17b93949
...
...
@@ -105,7 +105,6 @@ static VLCSimplePrefs *_o_sharedInstance = nil;
[
o_sprefs_win
setToolbar
:
o_sprefs_toolbar
];
/* setup useful stuff */
/* TODO: hard-code this instead of one-the-run generation */
o_hotkeysNonUseableKeys
=
[[
NSArray
arrayWithObjects
:
[
NSNumber
numberWithInt
:
KEY_MODIFIER_COMMAND
|
'c'
],
[
NSNumber
numberWithInt
:
KEY_MODIFIER_COMMAND
|
'x'
],
...
...
@@ -127,7 +126,6 @@ static VLCSimplePrefs *_o_sharedInstance = nil;
[
NSNumber
numberWithInt
:
KEY_MODIFIER_COMMAND
|
'2'
],
[
NSNumber
numberWithInt
:
KEY_MODIFIER_COMMAND
|
'3'
],
[
NSNumber
numberWithInt
:
KEY_MODIFIER_COMMAND
|
'm'
],
[
NSNumber
numberWithInt
:
KEY_MODIFIER_COMMAND
|
'q'
],
[
NSNumber
numberWithInt
:
KEY_MODIFIER_COMMAND
|
'w'
],
[
NSNumber
numberWithInt
:
KEY_MODIFIER_COMMAND
|
KEY_MODIFIER_SHIFT
|
'w'
],
[
NSNumber
numberWithInt
:
KEY_MODIFIER_COMMAND
|
KEY_MODIFIER_SHIFT
|
'c'
],
...
...
@@ -1151,7 +1149,7 @@ static VLCSimplePrefs *_o_sharedInstance = nil;
if
(
i_returnValue
!=
NSNotFound
)
[
o_hotkeys_change_taken_lbl
setStringValue
:
[
NSString
stringWithFormat
:
_NS
(
"This combination is already taken by
\"
%@
\"
."
),
[
self
OSXKeyToString
:[[
o_hotkeyDescriptions
objectAtIndex
:
i_returnValue
]
intValue
]
]]];
[
o_hotkeyDescriptions
objectAtIndex
:
i_returnValue
]]];
else
[
o_hotkeys_change_taken_lbl
setStringValue
:
@""
];
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment