Fixed scan account keyboard shortcut which conflicted with the shortcut for the save button

This commit is contained in:
Mohamed 2024-11-27 13:54:36 -05:00
parent 40689caef6
commit 9c3868bfc9

View File

@ -12,7 +12,7 @@ class generalAccount(wx.Panel, baseDialog.BaseWXDialog):
super(generalAccount, self).__init__(parent)
sizer = wx.BoxSizer(wx.VERTICAL)
userAutocompletionBox = wx.StaticBox(self, label=_("User autocompletion settings"))
self.userAutocompletionScan = wx.Button(self, wx.ID_ANY, _("&Scan account and add followers and following users to the user autocompletion database"))
self.userAutocompletionScan = wx.Button(self, wx.ID_ANY, _("S&can account and add followers and following users to the user autocompletion database"))
self.userAutocompletionManage = wx.Button(self, wx.ID_ANY, _("&Manage autocompletion database"))
autocompletionSizer = wx.StaticBoxSizer(userAutocompletionBox, wx.HORIZONTAL)
autocompletionSizer.Add(self.userAutocompletionScan, 0, wx.ALL, 5)