aboutsummaryrefslogtreecommitdiffstats
path: root/menu.c
diff options
context:
space:
mode:
authorokan2012-10-31 19:30:19 +0000
committerokan2012-10-31 19:30:19 +0000
commit09592e294300150a2c627a176bdbec0fedf4e1d9 (patch)
tree408b348edf99fa03e26c6aee3e1b08229d0c3da5 /menu.c
parent5854a666c86986a568f60c94ce1fa0fe10104405 (diff)
downloadcwm-09592e294300150a2c627a176bdbec0fedf4e1d9.tar.gz
replace 'reload' with 'restart', which merely re-exec's cwm using the
existing argv; same idea with respect to argv saving as Alexander Polakov. reload support was half-complete and is getting in the way. agreed to by many
Diffstat (limited to '')
-rw-r--r--menu.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/menu.c b/menu.c
index fa44cfb..568727f 100644
--- a/menu.c
+++ b/menu.c
@@ -16,7 +16,7 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
- * $OpenBSD: menu.c,v 1.40 2012/10/23 16:13:59 okan Exp $
+ * $OpenBSD: menu.c,v 1.41 2012/10/31 19:30:19 okan Exp $
*/
#include <sys/param.h>
@@ -77,8 +77,6 @@ menu_init(struct screen_ctx *sc)
{
XGCValues gv;
- if (sc->menuwin)
- XDestroyWindow(X_Dpy, sc->menuwin);
sc->menuwin = XCreateSimpleWindow(X_Dpy, sc->rootwin, 0, 0, 1, 1,
Conf.bwidth,
sc->color[CWM_COLOR_FG_MENU].pixel,
@@ -89,8 +87,6 @@ menu_init(struct screen_ctx *sc)
gv.background = sc->color[CWM_COLOR_BG_MENU].pixel;
gv.function = GXxor;
- if (sc->gc)
- XFreeGC(X_Dpy, sc->gc);
sc->gc = XCreateGC(X_Dpy, sc->menuwin,
GCForeground|GCBackground|GCFunction, &gv);
}