aboutsummaryrefslogtreecommitdiffstats
path: root/dzen.h
diff options
context:
space:
mode:
authorgotmor <gotmor@f2baff5b-bf2c-0410-a398-912abdc3d8b2>2009-02-27 01:47:33 +0000
committergotmor <gotmor@f2baff5b-bf2c-0410-a398-912abdc3d8b2>2009-02-27 01:47:33 +0000
commit2bac4f00ed028c8a3f33e4a06c55a88da5019e11 (patch)
tree433f76a5063ec98cef54c8a59024170d8419800f /dzen.h
parentb44d790dbbab8c80c238f70d7dbeef44880342cc (diff)
downloaddzen-2bac4f00ed028c8a3f33e4a06c55a88da5019e11.tar.gz
dzen-2bac4f00ed028c8a3f33e4a06c55a88da5019e11.zip
applied patch from Philip Lewis:
* refactored out big block of duplicated code in draw.c:parse_line() * y tracking for clickable areas * fixed bug where having position locked at end of line could screw up autoresize * "block align" formatting command: ^ba(width,align) * added optional arguments to menuprint actions git-svn-id: http://dzen.googlecode.com/svn/trunk@255 f2baff5b-bf2c-0410-a398-912abdc3d8b2
Diffstat (limited to 'dzen.h')
-rw-r--r--dzen.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/dzen.h b/dzen.h
index 6dfdf7d..8c3811c 100644
--- a/dzen.h
+++ b/dzen.h
@@ -65,6 +65,8 @@ typedef struct _CLICK_A {
int button;
int start_x;
int end_x;
+ int start_y;
+ int end_y;
char cmd[1024];
} click_a;
extern click_a sens_areas[MAX_CLICKABLE_AREAS];