Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
60b06277
Commit
60b06277
authored
Apr 10, 2011
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx: fixed minor display issue with the Equalizer button (#4654)
parent
6d98ddf3
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15857 additions
and
15869 deletions
+15857
-15869
extras/package/macosx/Resources/English.lproj/MainMenu.nib/designable.nib
...acosx/Resources/English.lproj/MainMenu.nib/designable.nib
+15851
-15865
extras/package/macosx/Resources/English.lproj/MainMenu.nib/keyedobjects.nib
...osx/Resources/English.lproj/MainMenu.nib/keyedobjects.nib
+0
-0
modules/gui/macosx/equalizer.h
modules/gui/macosx/equalizer.h
+0
-1
modules/gui/macosx/equalizer.m
modules/gui/macosx/equalizer.m
+6
-3
No files found.
extras/package/macosx/Resources/English.lproj/MainMenu.nib/designable.nib
View file @
60b06277
This diff is collapsed.
Click to expand it.
extras/package/macosx/Resources/English.lproj/MainMenu.nib/keyedobjects.nib
View file @
60b06277
No preview for this file type
modules/gui/macosx/equalizer.h
View file @
60b06277
...
...
@@ -27,7 +27,6 @@
@interface
VLCEqualizer
:
NSObject
{
IBOutlet
id
o_btn_equalizer
;
IBOutlet
id
o_btn_equalizer_embedded
;
IBOutlet
id
o_ckb_2pass
;
IBOutlet
id
o_ckb_enable
;
IBOutlet
id
o_fld_preamp
;
...
...
modules/gui/macosx/equalizer.m
View file @
60b06277
...
...
@@ -142,7 +142,6 @@ static bool GetFiltersStatus( intf_thread_t *p_intf,
{
int
i
;
[
o_btn_equalizer
setToolTip
:
_NS
(
"Equalizer"
)];
[
o_btn_equalizer_embedded
setToolTip
:
_NS
(
"Equalizer"
)];
[
o_ckb_2pass
setTitle
:
_NS
(
"2 Pass"
)];
[
o_ckb_2pass
setToolTip
:
_NS
(
"Apply the "
"equalizer filter twice. The effect will be sharper."
)];
...
...
@@ -330,13 +329,11 @@ static bool GetFiltersStatus( intf_thread_t *p_intf,
{
[
o_window
orderOut
:
sender
];
[
o_btn_equalizer
setState
:
NSOffState
];
[
o_btn_equalizer_embedded
setState
:
NSOffState
];
}
else
{
[
o_window
makeKeyAndOrderFront
:
sender
];
[
o_btn_equalizer
setState
:
NSOnState
];
[
o_btn_equalizer_embedded
setState
:
NSOnState
];
}
}
...
...
@@ -363,6 +360,12 @@ static bool GetFiltersStatus( intf_thread_t *p_intf,
vlc_object_release
(
p_object
);
}
-
(
void
)
windowDidBecomeKey
:(
NSNotification
*
)
aNotification
{
[
o_btn_equalizer
setState
:
NSOnState
];
}
-
(
void
)
windowWillClose
:(
NSNotification
*
)
aNotification
{
[
o_btn_equalizer
setState
:
NSOffState
];
...
...
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