From: Dana Jansens Date: Thu, 21 Jun 2007 03:12:19 +0000 (+0000) Subject: missing the topright option for the dock X-Git-Tag: release-2.0.2~33 X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=3b9bae88033428f11c90b72c2e9c4799dc996cc3;p=dana%2Fobconf.git missing the topright option for the dock --- diff --git a/src/dock.c b/src/dock.c index dc35c5d..c1b8d54 100644 --- a/src/dock.c +++ b/src/dock.c @@ -73,6 +73,7 @@ void dock_setup_tab() w = get_widget("dock_position"); s = tree_get_string("dock/position", "TopLeft"); if (!strcasecmp(s, "Top")) pos = POSITION_TOP; + else if (!strcasecmp(s, "TopRight")) pos = POSITION_TOPRIGHT; else if (!strcasecmp(s, "Left")) pos = POSITION_LEFT; else if (!strcasecmp(s, "Right")) pos = POSITION_RIGHT; else if (!strcasecmp(s, "BottomLeft")) pos = POSITION_BOTTOMLEFT;