diff options
author | portix <portix@gmx.net> | 2012-02-29 00:50:29 +0100 |
---|---|---|
committer | portix <portix@gmx.net> | 2012-02-29 00:50:29 +0100 |
commit | 8304d79b035949e8f022df9ebe8f04bb801ea042 (patch) | |
tree | 783234d931475f56d837f8fc12e368151b0f387c /src/dwb.h | |
parent | c74f3cd7881423c074e0bbaa8b2038039af55920 (diff) | |
download | dwb-8304d79b035949e8f022df9ebe8f04bb801ea042.zip |
New setting 'new-tab-position-policy', closing #85; don't set setting from commandline if an error occured
Diffstat (limited to 'src/dwb.h')
-rw-r--r-- | src/dwb.h | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -230,6 +230,12 @@ typedef enum _TabMoveDirection { TAB_MOVE_RIGHT, } TabMoveDirection; +typedef enum _TabPosition { + TAB_POSITION_LEFT, + TAB_POSITION_RIGHT, + TAB_POSITION_LEFTMOST, + TAB_POSITION_RIGHTMOST, +} TabPosition; typedef enum { PLUGIN_STATUS_DISABLED = 1<<0, @@ -678,6 +684,7 @@ struct _Misc { int synctimer; int bar_height; char *fifo; + TabPosition tab_position; }; struct _Files { const char *bookmarks; |