comparison src/audacious/ui_main.c @ 2907:21b27e97bfb9 trunk

Remove pointless starting_up variable. With transition to UIManager actions, the codepaths it was blocking will no longer be executed at startup.
author William Pitcock <nenolod@atheme.org>
date Thu, 28 Jun 2007 01:42:49 -0500
parents 68f3b7ff4333
children cd21a4556dd2
comparison
equal deleted inserted replaced
2906:68f3b7ff4333 2907:21b27e97bfb9
3275 action_view_always_on_top( GtkToggleAction * action ) 3275 action_view_always_on_top( GtkToggleAction * action )
3276 { 3276 {
3277 mainwin_menurow->mr_always_selected = gtk_toggle_action_get_active( action ); 3277 mainwin_menurow->mr_always_selected = gtk_toggle_action_get_active( action );
3278 cfg.always_on_top = mainwin_menurow->mr_always_selected; 3278 cfg.always_on_top = mainwin_menurow->mr_always_selected;
3279 widget_draw(WIDGET(mainwin_menurow)); 3279 widget_draw(WIDGET(mainwin_menurow));
3280 3280 hint_set_always(cfg.always_on_top);
3281 if (starting_up == FALSE)
3282 hint_set_always(cfg.always_on_top);
3283 } 3281 }
3284 3282
3285 void 3283 void
3286 action_view_doublesize( GtkToggleAction * action ) 3284 action_view_doublesize( GtkToggleAction * action )
3287 { 3285 {