X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;f=openbox%2Fdock.c;h=f14922401c8c040d688cfe1a6a2c873008f92e29;hb=6c4126ec617ccb0dd4e6bf0e3aecaa2181172c66;hp=7511366ddc81a999bbdd5897e19220b25837485f;hpb=7eddc48043272f170bfb44b39dc6c99eb4d9dfa5;p=chaz%2Fopenbox diff --git a/openbox/dock.c b/openbox/dock.c index 7511366d..f1492240 100644 --- a/openbox/dock.c +++ b/openbox/dock.c @@ -1,3 +1,21 @@ +/* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*- + + dock.c for the Openbox window manager + Copyright (c) 2003 Ben Jansens + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + See the COPYING file for a copy of the GNU General Public License. +*/ + #include "debug.h" #include "dock.h" #include "mainloop.h" @@ -550,8 +568,6 @@ static gboolean hide_timeout(gpointer data) void dock_hide(gboolean hide) { - if (dock->hidden == hide || !config_dock_hide) - return; if (!hide) { /* show */ dock->hidden = FALSE; @@ -559,8 +575,8 @@ void dock_hide(gboolean hide) /* if was hiding, stop it */ ob_main_loop_timeout_remove(ob_main_loop, hide_timeout); - } else { - ob_main_loop_timeout_add(ob_main_loop, config_dock_hide_timeout * 1000, + } else if (!dock->hidden && config_dock_hide) { + ob_main_loop_timeout_add(ob_main_loop, config_dock_hide_timeout, hide_timeout, NULL, NULL); } }