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);
}
static gboolean show = TRUE;
if(show)
if(!gtk_widget_get_visible(GTK_WIDGET(Zathura.UI.information)))
switch_view(Zathura.UI.information);
else
{
switch_view(Zathura.UI.drawing_area);
}
show = !show;
return FALSE;
}