From 80df3f254b1bfb26fc6ba8cf361ac26f4b45ffcc Mon Sep 17 00:00:00 2001 From: Abdulqadir Ahmad Date: Sat, 2 Dec 2023 06:56:58 +0100 Subject: [PATCH] Removed number of rows in grid sizer of show user profile dialog --- src/wxUI/dialogs/mastodon/showUserProfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wxUI/dialogs/mastodon/showUserProfile.py b/src/wxUI/dialogs/mastodon/showUserProfile.py index f4a55280..a3aedce9 100644 --- a/src/wxUI/dialogs/mastodon/showUserProfile.py +++ b/src/wxUI/dialogs/mastodon/showUserProfile.py @@ -72,7 +72,7 @@ class ShowUserProfile(wx.Dialog): self.SetTitle(_("{}'s Profile").format(user.display_name)) self.panel = wx.Panel(self) wrapperSizer = wx.BoxSizer(wx.VERTICAL) - mainSizer = wx.GridSizer(12, 2, 5, 5) + mainSizer = wx.GridSizer(2, 5, 5) # create widgets nameLabel = wx.StaticText(self.panel, label=_("Name: "))