Skip to content

Commit

Permalink
fix: to small width of panel in about panel
Browse files Browse the repository at this point in the history
  • Loading branch information
0x192 committed Jan 7, 2024
1 parent ccbdd35 commit 5a7782a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gui/views/about.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,12 @@ impl About {
let self_update_row = row![uad_version_text, self_update_btn, last_self_update_text,]
.align_items(Alignment::Center)
.spacing(10)
.width(550);
.width(600);

let uad_list_row = row![uad_list_text, uad_lists_btn, last_update_text,]
.align_items(Alignment::Center)
.spacing(10)
.width(550);
.width(600);

#[cfg(feature = "self-update")]
let update_column = column![uad_list_row, self_update_row]
Expand Down

0 comments on commit 5a7782a

Please sign in to comment.