summaryrefslogtreecommitdiffstats
path: root/include/rofi.h
diff options
context:
space:
mode:
authorQC <qball@gmpclient.org>2015-05-10 12:08:08 +0200
committerQC <qball@gmpclient.org>2015-05-10 12:08:08 +0200
commit9307a1668e44dfceb3bd3aabd2ee554b5f4dedd9 (patch)
treea97cd4fbe9b1705b97d63d44ef3c8dc4f4adbd38 /include/rofi.h
parent4d3b9e414de15fc3ea3be0929da8b371372b0162 (diff)
Add -format option to dmenu.
Diffstat (limited to 'include/rofi.h')
-rw-r--r--include/rofi.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/rofi.h b/include/rofi.h
index 2fd3a816..56afb67d 100644
--- a/include/rofi.h
+++ b/include/rofi.h
@@ -45,13 +45,13 @@ typedef const char * ( *get_display_value )( unsigned int selected_line, void *d
typedef enum
{
/** Entry is selected. */
- MENU_OK = 0x0010000,
+ MENU_OK = 0x00010000,
/** User canceled the operation. (e.g. pressed escape) */
- MENU_CANCEL = 0x0020000,
+ MENU_CANCEL = 0x00020000,
/** User requested a mode switch */
- MENU_NEXT = 0x0040000,
+ MENU_NEXT = 0x00040000,
/** Custom (non-matched) input was entered. */
- MENU_CUSTOM_INPUT = 0x0080000,
+ MENU_CUSTOM_INPUT = 0x00080000,
/** User wanted to delete entry from history. */
MENU_ENTRY_DELETE = 0x00100000,
/** User wants to jump to another switcher. */