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
3b705163
Commit
3b705163
authored
Jun 08, 2014
by
David Fuhrmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx: audio effects: fix behaviour of cancel button in organize profile dialog box
parent
24b9a215
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
21 deletions
+27
-21
modules/gui/macosx/AudioEffects.m
modules/gui/macosx/AudioEffects.m
+27
-21
No files found.
modules/gui/macosx/AudioEffects.m
View file @
3b705163
...
@@ -719,8 +719,8 @@ static bool GetEqualizerStatus(intf_thread_t *p_custom_intf,
...
@@ -719,8 +719,8 @@ static bool GetEqualizerStatus(intf_thread_t *p_custom_intf,
-
(
void
)
panel
:(
VLCSelectItemInPopupPanel
*
)
panel
returnValue
:(
NSUInteger
)
value
item
:(
NSUInteger
)
item
-
(
void
)
panel
:(
VLCSelectItemInPopupPanel
*
)
panel
returnValue
:(
NSUInteger
)
value
item
:(
NSUInteger
)
item
{
{
if
(
value
==
NSOKButton
)
{
if
(
!
b_genericAudioProfileInInteraction
)
{
if
(
!
b_genericAudioProfileInInteraction
)
{
if
(
value
==
NSOKButton
)
{
/* remove requested profile from the arrays */
/* remove requested profile from the arrays */
NSUserDefaults
*
defaults
=
[
NSUserDefaults
standardUserDefaults
];
NSUserDefaults
*
defaults
=
[
NSUserDefaults
standardUserDefaults
];
NSMutableArray
*
workArray
=
[[
NSMutableArray
alloc
]
initWithArray
:[
defaults
objectForKey
:
@"EQValues"
]];
NSMutableArray
*
workArray
=
[[
NSMutableArray
alloc
]
initWithArray
:[
defaults
objectForKey
:
@"EQValues"
]];
...
@@ -740,12 +740,19 @@ static bool GetEqualizerStatus(intf_thread_t *p_custom_intf,
...
@@ -740,12 +740,19 @@ static bool GetEqualizerStatus(intf_thread_t *p_custom_intf,
[
defaults
setObject
:[
NSArray
arrayWithArray
:
workArray
]
forKey
:
@"EQNames"
];
[
defaults
setObject
:[
NSArray
arrayWithArray
:
workArray
]
forKey
:
@"EQNames"
];
[
workArray
release
];
[
workArray
release
];
[
defaults
synchronize
];
[
defaults
synchronize
];
}
/* update UI */
/* update UI */
[
self
updatePresetSelector
];
[
self
updatePresetSelector
];
}
else
{
}
else
{
/* remove selected profile from settings */
NSUserDefaults
*
defaults
=
[
NSUserDefaults
standardUserDefaults
];
NSUserDefaults
*
defaults
=
[
NSUserDefaults
standardUserDefaults
];
if
(
value
!=
NSOKButton
)
{
[
o_profile_pop
selectItemAtIndex
:[
defaults
integerForKey
:
@"AudioEffectSelectedProfile"
]];
return
;
}
/* remove selected profile from settings */
NSMutableArray
*
workArray
=
[[
NSMutableArray
alloc
]
initWithArray
:[
defaults
objectForKey
:
@"AudioEffectProfiles"
]];
NSMutableArray
*
workArray
=
[[
NSMutableArray
alloc
]
initWithArray
:[
defaults
objectForKey
:
@"AudioEffectProfiles"
]];
[
workArray
removeObjectAtIndex
:
item
];
[
workArray
removeObjectAtIndex
:
item
];
[
defaults
setObject
:[
NSArray
arrayWithArray
:
workArray
]
forKey
:
@"AudioEffectProfiles"
];
[
defaults
setObject
:[
NSArray
arrayWithArray
:
workArray
]
forKey
:
@"AudioEffectProfiles"
];
...
@@ -762,7 +769,6 @@ static bool GetEqualizerStatus(intf_thread_t *p_custom_intf,
...
@@ -762,7 +769,6 @@ static bool GetEqualizerStatus(intf_thread_t *p_custom_intf,
[
defaults
synchronize
];
[
defaults
synchronize
];
[
self
resetProfileSelector
];
[
self
resetProfileSelector
];
}
}
}
}
}
#pragma mark -
#pragma mark -
...
...
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