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
83636730
Commit
83636730
authored
May 11, 2005
by
Jérome Decoodt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Preferences panel can be viewed on X.2. Closes #104.
+ fix hotkeys widget with macos < 10.3
parent
6f663e2c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
modules/gui/macosx/intf.m
modules/gui/macosx/intf.m
+4
-1
modules/gui/macosx/prefs_widgets.m
modules/gui/macosx/prefs_widgets.m
+1
-0
No files found.
modules/gui/macosx/intf.m
View file @
83636730
...
@@ -294,7 +294,7 @@ static VLCMain *_o_sharedMainInstance = nil;
...
@@ -294,7 +294,7 @@ static VLCMain *_o_sharedMainInstance = nil;
}
}
o_about
=
[[
VLAboutBox
alloc
]
init
];
o_about
=
[[
VLAboutBox
alloc
]
init
];
o_prefs
=
[[
VLCPrefs
alloc
]
init
]
;
o_prefs
=
nil
;
o_open
=
[[
VLCOpen
alloc
]
init
];
o_open
=
[[
VLCOpen
alloc
]
init
];
i_lastShownVolume
=
-
1
;
i_lastShownVolume
=
-
1
;
...
@@ -1415,6 +1415,9 @@ static VLCMain *_o_sharedMainInstance = nil;
...
@@ -1415,6 +1415,9 @@ static VLCMain *_o_sharedMainInstance = nil;
-
(
IBAction
)
viewPreferences
:(
id
)
sender
-
(
IBAction
)
viewPreferences
:(
id
)
sender
{
{
/* GRUIIIIIIIK */
if
(
o_prefs
==
nil
)
o_prefs
=
[[
VLCPrefs
alloc
]
init
];
[
o_prefs
showPrefs
];
[
o_prefs
showPrefs
];
}
}
...
...
modules/gui/macosx/prefs_widgets.m
View file @
83636730
...
@@ -55,6 +55,7 @@
...
@@ -55,6 +55,7 @@
action:nil keyEquivalent:@""]; \
action:nil keyEquivalent:@""]; \
[o_mi setKeyEquivalentModifierMask: \
[o_mi setKeyEquivalentModifierMask: \
0]; \
0]; \
if( MACOS_VERSION >= 10.3 ) \
[o_mi setAlternate: NO]; \
[o_mi setAlternate: NO]; \
[o_mi setTag: \
[o_mi setTag: \
( value )]; \
( value )]; \
...
...
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