aboutsummaryrefslogtreecommitdiffstats
path: root/action.c
diff options
context:
space:
mode:
authorgotmor <gotmor@f2baff5b-bf2c-0410-a398-912abdc3d8b2>2007-05-16 16:37:43 +0000
committergotmor <gotmor@f2baff5b-bf2c-0410-a398-912abdc3d8b2>2007-05-16 16:37:43 +0000
commit4ad34ccd36a59c1c5ec2ea9b4263ae6381f3feae (patch)
treebf4cf5ccd854e01fa6ea3fca4bb38a937865f10a /action.c
parenta1a0971c1f4bce4410a9ede8aaa5c45fd5b9a964 (diff)
downloaddzen-4ad34ccd36a59c1c5ec2ea9b4263ae6381f3feae.tar.gz
dzen-4ad34ccd36a59c1c5ec2ea9b4263ae6381f3feae.zip
cleanups, renamed mh to line_height
git-svn-id: http://dzen.googlecode.com/svn/trunk@28 f2baff5b-bf2c-0410-a398-912abdc3d8b2
Diffstat (limited to 'action.c')
-rw-r--r--action.c4
1 files changed, 2 insertions, 2 deletions
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;