mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-18 13:54:36 -05:00
Fix missing enum to str for Set.
This commit is contained in:
parent
f9ea58f7c5
commit
28052a452c
2 changed files with 1282 additions and 1259 deletions
|
@ -3,7 +3,7 @@
|
|||
/**
|
||||
* Name of the property type
|
||||
*/
|
||||
const char * const PropertyTypeName[P_NUM_TYPES] = {
|
||||
const char *const PropertyTypeName[P_NUM_TYPES] = {
|
||||
/** Integer */
|
||||
"Integer",
|
||||
/** Double */
|
||||
|
@ -28,6 +28,8 @@ const char * const PropertyTypeName[P_NUM_TYPES] = {
|
|||
"Highlight",
|
||||
/** List */
|
||||
"List",
|
||||
/** Set */
|
||||
"Set",
|
||||
/** Orientation */
|
||||
"Orientation",
|
||||
/** Cursor */
|
||||
|
|
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue