From 4ad34ccd36a59c1c5ec2ea9b4263ae6381f3feae Mon Sep 17 00:00:00 2001 From: gotmor Date: Wed, 16 May 2007 16:37:43 +0000 Subject: cleanups, renamed mh to line_height git-svn-id: http://dzen.googlecode.com/svn/trunk@28 f2baff5b-bf2c-0410-a398-912abdc3d8b2 --- action.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'action.c') diff --git a/action.c b/action.c index f3026e5..b27dd73 100644 --- a/action.c +++ b/action.c @@ -161,7 +161,7 @@ fill_ev_table(char *input) int a_exposetitle(char * opt[]) { XCopyArea(dzen.dpy, dzen.title_win.drawable, dzen.title_win.win, - dzen.gc, 0, 0, dzen.title_win.width, dzen.mh, 0, 0); + dzen.gc, 0, 0, dzen.title_win.width, dzen.line_height, 0, 0); return 0; } @@ -266,7 +266,7 @@ a_hide(char * opt[]) { int a_unhide(char * opt[]) { if(dzen.title_win.ishidden) { - XResizeWindow(dzen.dpy, dzen.title_win.win, dzen.title_win.width, dzen.mh); + XResizeWindow(dzen.dpy, dzen.title_win.win, dzen.title_win.width, dzen.line_height); dzen.title_win.ishidden = False; } return 0; -- cgit v1.2.3-54-g00ecf