Adjust default list size
This commit is contained in:
parent
a3ea6d5197
commit
010e1a977d
2 changed files with 2 additions and 2 deletions
|
|
@ -801,7 +801,7 @@ impl App {
|
|||
widget::settings::item::builder(fl!("icon-size-list"))
|
||||
.description(format!("{}%", list))
|
||||
.control(
|
||||
widget::slider(100..=500, list, move |list| {
|
||||
widget::slider(75..=500, list, move |list| {
|
||||
Message::TabConfig(TabConfig {
|
||||
icon_sizes: IconSizes {
|
||||
list: NonZeroU16::new(list).unwrap(),
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@ use super::tab::HeadingOptions;
|
|||
pub const CONFIG_VERSION: u64 = 1;
|
||||
|
||||
// Default icon sizes
|
||||
pub const ICON_SIZE_LIST: u16 = 24;
|
||||
pub const ICON_SIZE_LIST: u16 = 32;
|
||||
pub const ICON_SIZE_LIST_CONDENSED: u16 = 48;
|
||||
pub const ICON_SIZE_GRID: u16 = 64;
|
||||
// TODO: 5 is an arbitrary number. Maybe there's a better icon size max
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue