1
0
Fork 0
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:
Jonathan Gordon 2006-09-17 14:04:58 +00:00
parent c85467d437
commit ef6d394abf

View file

@ -1185,9 +1185,12 @@ static bool view_mode_setting(void)
{"No (Narrow)", -1},
{"Yes", -1},
};
return rb->set_option("Wide View", &prefs.view_mode, INT,
bool ret;
ret = rb->set_option("Wide View", &prefs.view_mode, INT,
names , 2, NULL);
if (prefs.view_mode == NARROW)
col = 0;
return ret;
}
static bool scroll_mode_setting(void)