예제 #1
0
파일: menu.c 프로젝트: g7/fbpanel
static gboolean
menu_unmap(GtkWidget *menu, plugin_instance *p)
{
    ENTER;
    if (p->panel->autohide)
        ah_start(p->panel);
    RET(FALSE);
}
예제 #2
0
파일: panel.c 프로젝트: bbidulock/fbpanel
static gboolean
panel_mapped(GtkWidget *widget, GdkEvent *event, panel *p)
{
    ENTER;
    if (p->autohide) {
        ah_stop(p);
        ah_start(p);
    }
    RET(FALSE);
}