Removed number of rows in grid sizer of show user profile dialog

This commit is contained in:
Abdulqadir Ahmad 2023-12-02 06:56:58 +01:00
parent 6c43c419fe
commit 80df3f254b

View File

@ -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: "))