summaryrefslogtreecommitdiffstats
path: root/source/widgets
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2020-12-03 18:01:18 +0100
committerDave Davenport <qball@gmpclient.org>2020-12-03 18:01:18 +0100
commitc0f9c633d465cb9d661bb604ef1ab61cf98c310b (patch)
tree19d98efe677a4cf8dc2ca071f960945c9d09084c /source/widgets
parent849db3c432f4a5373cd6397bd48b0c5df4ddc5eb (diff)
Remove cycle option.
Is part of the listview theme option now.
Diffstat (limited to 'source/widgets')
-rw-r--r--source/widgets/listview.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/widgets/listview.c b/source/widgets/listview.c
index 98f2873c..53f92eea 100644
--- a/source/widgets/listview.c
+++ b/source/widgets/listview.c
@@ -679,8 +679,8 @@ listview *listview_create ( widget *parent, const char *name, listview_update_ca
lv->fixed_num_lines = rofi_theme_get_boolean ( WIDGET ( lv ), "fixed-height", TRUE );
lv->dynamic = rofi_theme_get_boolean ( WIDGET ( lv ), "dynamic", TRUE );
lv->reverse = rofi_theme_get_boolean ( WIDGET ( lv ), "reverse", reverse );
- lv->cycle = rofi_theme_get_boolean ( WIDGET ( lv ), "cycle", config.cycle );
- lv->fixed_columns = rofi_theme_get_boolean ( WIDGET ( lv ), "fixed-columns", FALSE );
+ lv->cycle = rofi_theme_get_boolean ( WIDGET ( lv ), "cycle", FALSE );
+ lv->fixed_columns = rofi_theme_get_boolean ( WIDGET ( lv ), "fixed-columns", FALSE );
lv->type = rofi_theme_get_orientation ( WIDGET ( lv ), "layout", ROFI_ORIENTATION_VERTICAL );
if ( lv->type == LISTVIEW ) {