Commit 03074537 authored by Felix Paul Kühne's avatar Felix Paul Kühne

* finish the vout menu (cloeses #302)

parent ba747c38
...@@ -324,6 +324,15 @@ ...@@ -324,6 +324,15 @@
"o_scrollfield" = id; "o_scrollfield" = id;
"o_timefield" = id; "o_timefield" = id;
"o_timeslider" = id; "o_timeslider" = id;
"o_vmi_fullscreen" = id;
"o_vmi_mute" = id;
"o_vmi_next" = id;
"o_vmi_play" = id;
"o_vmi_prev" = id;
"o_vmi_snapshot" = id;
"o_vmi_stop" = id;
"o_vmi_voldown" = id;
"o_vmi_volup" = id;
"o_volumeslider" = id; "o_volumeslider" = id;
"o_vout_menu" = id; "o_vout_menu" = id;
"o_window" = id; "o_window" = id;
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
<plist version="1.0"> <plist version="1.0">
<dict> <dict>
<key>IBDocumentLocation</key> <key>IBDocumentLocation</key>
<string>185 59 478 430 0 0 1440 878 </string> <string>361 41 478 430 0 0 1440 878 </string>
<key>IBEditorPositions</key> <key>IBEditorPositions</key>
<dict> <dict>
<key>1617</key> <key>1617</key>
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
<key>2709</key> <key>2709</key>
<string>305 626 508 82 0 0 1024 746 </string> <string>305 626 508 82 0 0 1024 746 </string>
<key>2730</key> <key>2730</key>
<string>694 440 105 68 0 0 1440 878 </string> <string>396 512 130 249 0 0 1440 878 </string>
<key>29</key> <key>29</key>
<string>130 802 438 44 0 0 1440 878 </string> <string>130 802 438 44 0 0 1440 878 </string>
<key>915</key> <key>915</key>
...@@ -27,6 +27,7 @@ ...@@ -27,6 +27,7 @@
<array> <array>
<integer>2416</integer> <integer>2416</integer>
<integer>29</integer> <integer>29</integer>
<integer>2730</integer>
<integer>21</integer> <integer>21</integer>
</array> </array>
<key>IBSystem Version</key> <key>IBSystem Version</key>
......
...@@ -1379,6 +1379,7 @@ static VLCMain *_o_sharedMainInstance = nil; ...@@ -1379,6 +1379,7 @@ static VLCMain *_o_sharedMainInstance = nil;
[o_btn_play setToolTip: _NS("Pause")]; [o_btn_play setToolTip: _NS("Pause")];
[o_mi_play setTitle: _NS("Pause")]; [o_mi_play setTitle: _NS("Pause")];
[o_dmi_play setTitle: _NS("Pause")]; [o_dmi_play setTitle: _NS("Pause")];
[o_vmi_play setTitle: _NS("Pause")];
} }
else else
{ {
...@@ -1387,6 +1388,7 @@ static VLCMain *_o_sharedMainInstance = nil; ...@@ -1387,6 +1388,7 @@ static VLCMain *_o_sharedMainInstance = nil;
[o_btn_play setToolTip: _NS("Play")]; [o_btn_play setToolTip: _NS("Play")];
[o_mi_play setTitle: _NS("Play")]; [o_mi_play setTitle: _NS("Play")];
[o_dmi_play setTitle: _NS("Play")]; [o_dmi_play setTitle: _NS("Play")];
[o_vmi_play setTitle: _NS("Play")];
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment