Skip to content

Commit

Permalink
GNOME - Fix Tag Button Sizing
Browse files Browse the repository at this point in the history
Fixes #751
  • Loading branch information
nlogozzo committed Jan 5, 2024
1 parent 2fd1ccd commit e262e1f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions NickvisionMoney.GNOME/Controls/TagButton.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ public TagButton(string tag)
{
Tag = tag;
SetLabel(tag);
SetCanShrink(true);
OnToggled += (sender, e) => FilterChanged?.Invoke(this, (Tag, GetActive()));
}
}
1 change: 1 addition & 0 deletions NickvisionMoney.GNOME/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ public Program(string[] args)
* Fixed an issue where help documentation was not showing in-app
* Fixed an issue where some ofx files could not be imported
* Fixed an issue where the calendar was not showing marked days after pressing the ""Today"" button
* Fixed an issue where tag buttons would grow to super long sizes
* Added more logging to help debug issues
* Updated and added translations (Thanks to everyone on Weblate)!";
_application.OnActivate += OnActivate;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@
<p>- Fixed an issue where help documentation was not showing in-app</p>
<p>- Fixed an issue where some ofx files could not be imported</p>
<p>- Fixed an issue where the calendar was not showing marked days after pressing the "Today" button</p>
<p>- Fixed an issue where tag buttons would grow to super long sizes</p>
<p>- Added more logging to help debug issues</p>
<p>- Updated translations (Thanks to everyone on Weblate)!</p>
</description>
Expand Down

0 comments on commit e262e1f

Please sign in to comment.