summaryrefslogtreecommitdiffstats
path: root/lexer
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2017-06-02 16:34:52 +0200
committerDave Davenport <qball@gmpclient.org>2017-06-02 16:34:52 +0200
commitea7d20d1503836eba0c16f8a1960b8f462911f0f (patch)
treecf6dd94d66466930f71d32b2e64a759c8fed5238 /lexer
parent9915857a2ec4d13d83a963252264394fb7ce3f28 (diff)
Change Orientation enum to RofiOrientation.
Diffstat (limited to 'lexer')
-rw-r--r--lexer/theme-parser.y4
1 files changed, 2 insertions, 2 deletions
diff --git a/lexer/theme-parser.y b/lexer/theme-parser.y
index e0d13139..e293060f 100644
--- a/lexer/theme-parser.y
+++ b/lexer/theme-parser.y
@@ -579,8 +579,8 @@ t_property_color_value
;
t_property_orientation
-: ORIENTATION_HORI { $$ = ORIENTATION_HORIZONTAL; }
-| ORIENTATION_VERT { $$ = ORIENTATION_VERTICAL; }
+: ORIENTATION_HORI { $$ = ROFI_ORIENTATION_HORIZONTAL; }
+| ORIENTATION_VERT { $$ = ROFI_ORIENTATION_VERTICAL; }
;
/** Property name */