mirror of
https://github.com/davatorium/rofi.git
synced 2025-07-31 21:59:25 -04: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
|
* Name of the property type
|
||||||
*/
|
*/
|
||||||
const char * const PropertyTypeName[P_NUM_TYPES] = {
|
const char *const PropertyTypeName[P_NUM_TYPES] = {
|
||||||
/** Integer */
|
/** Integer */
|
||||||
"Integer",
|
"Integer",
|
||||||
/** Double */
|
/** Double */
|
||||||
|
@ -28,6 +28,8 @@ const char * const PropertyTypeName[P_NUM_TYPES] = {
|
||||||
"Highlight",
|
"Highlight",
|
||||||
/** List */
|
/** List */
|
||||||
"List",
|
"List",
|
||||||
|
/** Set */
|
||||||
|
"Set",
|
||||||
/** Orientation */
|
/** Orientation */
|
||||||
"Orientation",
|
"Orientation",
|
||||||
/** Cursor */
|
/** Cursor */
|
||||||
|
|
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue