summaryrefslogtreecommitdiffstats
path: root/include/rofi-types.h
diff options
context:
space:
mode:
authorKenneth Ho <ken.fsfoundry.org@gmail.com>2019-07-03 03:27:46 +0800
committerDave Davenport <DaveDavenport@users.noreply.github.com>2019-07-02 21:27:46 +0200
commitbe21fbae5d11916619f1b259a4b2191fcb19dae8 (patch)
tree4e48f7b0569ed2157a101abaddf40bad344bc306 /include/rofi-types.h
parent2ddb525ff3710a06f7091849710fab8482e39503 (diff)
add pythonic rows selection to -a and -u (#985)
Diffstat (limited to 'include/rofi-types.h')
-rw-r--r--include/rofi-types.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/rofi-types.h b/include/rofi-types.h
index ae9ccf02..bb294dad 100644
--- a/include/rofi-types.h
+++ b/include/rofi-types.h
@@ -224,8 +224,8 @@ typedef struct Property
*/
typedef struct rofi_range_pair
{
- unsigned int start;
- unsigned int stop;
+ int start;
+ int stop;
} rofi_range_pair;
/**