Skip to content

Commit de55dc5

Browse files
git-f0xwash2
authored andcommitted
fix(group_button): fix height
1 parent e26816f commit de55dc5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/app.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1180,10 +1180,10 @@ impl cosmic::Application for CosmicAppLibrary {
11801180
(32.0, spacing.space_s, 128.0, 8)
11811181
};
11821182
let group_height = group_icon_size
1183-
+ (h_padding as f32)
11841183
+ 20.0
11851184
+ (spacing.space_none as f32)
1186-
+ (spacing.space_xxs as f32);
1185+
+ (spacing.space_xxs as f32)
1186+
+ (spacing.space_s as f32);
11871187

11881188
let mut add_group_btn = Some(
11891189
button::custom(

0 commit comments

Comments
 (0)