forked from len0rd/rockbox
fixes FS#6007 point 2
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10971 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
c85467d437
commit
ef6d394abf
1 changed files with 5 additions and 2 deletions
|
@ -1185,9 +1185,12 @@ static bool view_mode_setting(void)
|
||||||
{"No (Narrow)", -1},
|
{"No (Narrow)", -1},
|
||||||
{"Yes", -1},
|
{"Yes", -1},
|
||||||
};
|
};
|
||||||
|
bool ret;
|
||||||
return rb->set_option("Wide View", &prefs.view_mode, INT,
|
ret = rb->set_option("Wide View", &prefs.view_mode, INT,
|
||||||
names , 2, NULL);
|
names , 2, NULL);
|
||||||
|
if (prefs.view_mode == NARROW)
|
||||||
|
col = 0;
|
||||||
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool scroll_mode_setting(void)
|
static bool scroll_mode_setting(void)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue