Replace visible check

This commit is contained in:
Moritz Lipp 2010-02-02 20:37:09 +01:00
parent 08f68723b6
commit b6c5b1e5bf

View file

@ -1998,17 +1998,13 @@ cmd_info(int argc, char** argv)
gtk_widget_show_all(Zathura.UI.information); gtk_widget_show_all(Zathura.UI.information);
} }
static gboolean show = TRUE; if(!gtk_widget_get_visible(GTK_WIDGET(Zathura.UI.information)))
if(show)
switch_view(Zathura.UI.information); switch_view(Zathura.UI.information);
else else
{ {
switch_view(Zathura.UI.drawing_area); switch_view(Zathura.UI.drawing_area);
} }
show = !show;
return FALSE; return FALSE;
} }