From 3b9bae88033428f11c90b72c2e9c4799dc996cc3 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Thu, 21 Jun 2007 03:12:19 +0000 Subject: [PATCH] missing the topright option for the dock --- src/dock.c | 1 + 1 file changed, 1 insertion(+) 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; -- 2.34.1