diff options
| author | Mikael Magnusson <mikachu@gmail.com> | 2014-04-10 22:51:28 +0200 |
|---|---|---|
| committer | Mikael Magnusson <mikachu@gmail.com> | 2014-04-10 22:51:55 +0200 |
| commit | d8f1ef057b0959410bdea84895d3bc091d157880 (patch) | |
| tree | bfe4297e96a801e164c6884147c63a39952d7556 | |
| parent | 76113b8a06e19f0a1ebef245daa0f645f6322367 (diff) | |
Fix typo in variable name
| -rw-r--r-- | openbox/actions/growtoedge.c | 4 |
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) { |
