summaryrefslogtreecommitdiffstats
path: root/include/rofi-types.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/rofi-types.h')
-rw-r--r--include/rofi-types.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/rofi-types.h b/include/rofi-types.h
index ced7e321..29fdca93 100644
--- a/include/rofi-types.h
+++ b/include/rofi-types.h
@@ -15,6 +15,8 @@ typedef enum
P_DOUBLE,
/** String */
P_STRING,
+ /** Character */
+ P_CHAR,
/** Boolean */
P_BOOLEAN,
/** Color */
@@ -211,6 +213,8 @@ typedef union _PropertyValue
double f;
/** String */
char *s;
+ /** Character */
+ char c;
/** boolean */
gboolean b;
/** Color */