summaryrefslogtreecommitdiff
path: root/openbox/actions
diff options
context:
space:
mode:
authorMikael Magnusson <mikachu@gmail.com>2014-04-10 22:51:28 +0200
committerMikael Magnusson <mikachu@gmail.com>2014-04-10 22:51:55 +0200
commitd8f1ef057b0959410bdea84895d3bc091d157880 (patch)
treebfe4297e96a801e164c6884147c63a39952d7556 /openbox/actions
parent76113b8a06e19f0a1ebef245daa0f645f6322367 (diff)
Fix typo in variable name
Diffstat (limited to 'openbox/actions')
-rw-r--r--openbox/actions/growtoedge.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/openbox/actions/growtoedge.c b/openbox/actions/growtoedge.c
index fa1b2c7e..acfbcfab 100644
--- a/openbox/actions/growtoedge.c
+++ b/openbox/actions/growtoedge.c
@@ -188,11 +188,11 @@ static gboolean run_func(ObActionsData *data, gpointer options)
if (!data->client)
return FALSE;
- gboolean doing_verical_resize =
+ gboolean doing_vertical_resize =
o->dir == OB_DIRECTION_NORTH ||
o->dir == OB_DIRECTION_SOUTH ||
o->fill;
- if (data->client->shaded && doing_verical_resize)
+ if (data->client->shaded && doing_vertical_resize)
return FALSE;
if (o->fill) {