Skip to content

Commit

Permalink
minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
GyulyVGC committed Dec 10, 2023
1 parent 9554eca commit 0c652b0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ All Sniffnet releases with the relative changes are documented in this file.
- Updated Portuguese translation to v1.2 ([#398](https://github.com/GyulyVGC/sniffnet/pull/398))
- Cleaned code implementing the concept of first class theming ([#339](https://github.com/GyulyVGC/sniffnet/pull/339))
- Added documentation about Sniffnet installation on Nix and Tiny Core Linux (respectively [#394](https://github.com/GyulyVGC/sniffnet/pull/394) and [#341](https://github.com/GyulyVGC/sniffnet/pull/341))
- Fixed bug causing the application's icon not to be visible in some Linux environments
- Fixed a build failure on `powerpc64` ([#356](https://github.com/GyulyVGC/sniffnet/pull/356) — fixes [#353](https://github.com/GyulyVGC/sniffnet/issues/353))
- Fixed a typo in Russian translation ([#389](https://github.com/GyulyVGC/sniffnet/pull/389))

Expand Down
4 changes: 2 additions & 2 deletions src/gui/pages/settings_general_page.rs
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,8 @@ fn row_language_scale_factor(
scale_factor: f64,
) -> Row<'static, Message, Renderer<StyleType>> {
Row::new()
.align_items(Alignment::Center)
.height(Length::Fixed(80.0))
.align_items(Alignment::Start)
.height(Length::Fixed(90.0))
.push(language_picklist(language, font))
.push(Rule::vertical(25))
.push(scale_factor_slider(language, font, scale_factor))
Expand Down

0 comments on commit 0c652b0

Please sign in to comment.