summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2016-01-05 21:19:30 +0100
committerDave Davenport <qball@gmpclient.org>2016-01-05 21:19:30 +0100
commit81ea5fd8c6cab7606cec7e42cf1b1ed62cce3380 (patch)
tree4b52e61402c6797f25d082dcb48714cf573e394b /include
parent329f31bd75425e62378d2a247b21847122372023 (diff)
Update documentation for ssh dialog
Diffstat (limited to 'include')
-rw-r--r--include/rofi.h2
-rw-r--r--include/textbox.h16
2 files changed, 9 insertions, 9 deletions
diff --git a/include/rofi.h b/include/rofi.h
index a08cdddc..9571765e 100644
--- a/include/rofi.h
+++ b/include/rofi.h
@@ -191,7 +191,7 @@ typedef struct _Settings
unsigned int case_sensitive;
/** Separator to use for dmenu mode */
char separator;
- /** Height of an element in #chars */
+ /** Height of an element in number of rows */
int element_height;
/** Sidebar mode, show the modi */
unsigned int sidebar_mode;
diff --git a/include/textbox.h b/include/textbox.h
index 2aa7c4f8..e7aef209 100644
--- a/include/textbox.h
+++ b/include/textbox.h
@@ -32,14 +32,14 @@ typedef struct
typedef enum
{
- TB_AUTOHEIGHT = 1 << 0,
- TB_AUTOWIDTH = 1 << 1,
- TB_LEFT = 1 << 16,
- TB_RIGHT = 1 << 17,
- TB_CENTER = 1 << 18,
- TB_EDITABLE = 1 << 19,
- TB_MARKUP = 1 << 20,
- TB_WRAP = 1 << 21,
+ TB_AUTOHEIGHT = 1 << 0,
+ TB_AUTOWIDTH = 1 << 1,
+ TB_LEFT = 1 << 16,
+ TB_RIGHT = 1 << 17,
+ TB_CENTER = 1 << 18,
+ TB_EDITABLE = 1 << 19,
+ TB_MARKUP = 1 << 20,
+ TB_WRAP = 1 << 21,
} TextboxFlags;
typedef enum