revision 440:d9bd9b7a283f
summary |
tree |
shortlog |
changelog |
graph |
changeset |
raw | bz2 | zip | gz changeset | 440:d9bd9b7a283f |
parent | 439:f0c7928c5914 |
child | 441:0ff0093f3088 |
author | nkeynes |
date | Sat Oct 13 03:58:31 2007 +0000 (15 years ago) |
Disable audio/video settings for the moment
1.1 --- a/src/gui/main_win.c Thu Oct 11 11:09:10 2007 +00001.2 +++ b/src/gui/main_win.c Sat Oct 13 03:58:31 2007 +00001.3 @@ -1,5 +1,5 @@1.4 /**1.5 - * $Id: main_win.c,v 1.2 2007-10-11 08:22:03 nkeynes Exp $1.6 + * $Id: main_win.c,v 1.3 2007-10-13 03:58:31 nkeynes Exp $1.7 *1.8 * Define the main (emu) GTK window, along with its menubars,1.9 * toolbars, etc.1.10 @@ -69,7 +69,6 @@1.11 " <separator/>"1.12 " <menuitem action='LoadState'/>"1.13 " <menuitem action='SaveState'/>"1.14 - " <menuitem action='Debugger'/>"1.15 " <separator/>"1.16 " <menuitem action='Exit'/>"1.17 " </menu>"1.18 @@ -121,7 +120,9 @@1.19 win->actions = gtk_action_group_new("MenuActions");1.20 gtk_action_group_add_actions( win->actions, ui_actions, G_N_ELEMENTS(ui_actions), win->window );1.21 gtk_action_group_add_toggle_actions( win->actions, ui_toggle_actions, G_N_ELEMENTS(ui_toggle_actions), win->window );1.22 + DISABLE_ACTION(win, "AudioSettings");1.23 DISABLE_ACTION(win, "NetworkSettings");1.24 + DISABLE_ACTION(win, "VideoSettings");1.26 ui_manager = gtk_ui_manager_new();1.27 gtk_ui_manager_set_add_tearoffs(ui_manager, TRUE);
.