Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
7b5c4c3f
Commit
7b5c4c3f
authored
Jan 27, 2012
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx: improve reliability to detect text field content changes (should finally fix #5862)
parent
f78f3ae2
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
180 additions
and
15 deletions
+180
-15
extras/package/macosx/Resources/English.lproj/Preferences.xib
...as/package/macosx/Resources/English.lproj/Preferences.xib
+158
-15
modules/gui/macosx/simple_prefs.m
modules/gui/macosx/simple_prefs.m
+22
-0
No files found.
extras/package/macosx/Resources/English.lproj/Preferences.xib
View file @
7b5c4c3f
This diff is collapsed.
Click to expand it.
modules/gui/macosx/simple_prefs.m
View file @
7b5c4c3f
...
@@ -1097,6 +1097,28 @@ static inline void save_module_list( intf_thread_t * p_intf, id object, const ch
...
@@ -1097,6 +1097,28 @@ static inline void save_module_list( intf_thread_t * p_intf, id object, const ch
[
self
showSettingsForCategory
:
o_osd_view
];
[
self
showSettingsForCategory
:
o_osd_view
];
}
}
-
(
void
)
controlTextDidChange
:(
NSNotification
*
)
o_notification
{
id
notificationObject
=
[
o_notification
object
];
if
(
notificationObject
==
o_audio_lang_fld
||
notificationObject
==
o_audio_lastpwd_sfld
||
notificationObject
==
o_audio_lastuser_fld
||
notificationObject
==
o_audio_vol_fld
)
b_audioSettingChanged
=
YES
;
else
if
(
notificationObject
==
o_input_record_fld
||
notificationObject
==
o_input_httpproxy_fld
||
notificationObject
==
o_input_httpproxypwd_sfld
||
notificationObject
==
o_input_postproc_fld
)
b_inputSettingChanged
=
YES
;
else
if
(
notificationObject
==
o_osd_font_fld
||
notificationObject
==
o_osd_lang_fld
||
notificationObject
==
o_osd_opacity_fld
)
b_osdSettingChanged
=
YES
;
else
if
(
notificationObject
==
o_video_snap_folder_fld
||
notificationObject
==
o_video_snap_prefix_fld
)
b_videoSettingChanged
=
YES
;
}
-
(
IBAction
)
showFontPicker
:(
id
)
sender
-
(
IBAction
)
showFontPicker
:(
id
)
sender
{
{
char
*
font
=
config_GetPsz
(
p_intf
,
"freetype-font"
);
char
*
font
=
config_GetPsz
(
p_intf
,
"freetype-font"
);
...
...
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