From 9307a1668e44dfceb3bd3aabd2ee554b5f4dedd9 Mon Sep 17 00:00:00 2001 From: QC Date: Sun, 10 May 2015 12:08:08 +0200 Subject: Add -format option to dmenu. --- include/rofi.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'include/rofi.h') 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. */ -- cgit v1.2.3