mirror of
https://github.com/MCV-Software/TWBlue.git
synced 2025-01-18 00:21:02 -06:00
Merge pull request #725 from Mohamed00/fixShortcutConflict
Fixed shortcut conflict, added some more
This commit is contained in:
commit
329010e8e0
@ -8,8 +8,8 @@ class autocompletionScanDialog(widgetUtils.BaseDialog):
|
|||||||
super(autocompletionScanDialog, self).__init__(parent=None, id=-1, title=_(u"Autocomplete users' settings"))
|
super(autocompletionScanDialog, self).__init__(parent=None, id=-1, title=_(u"Autocomplete users' settings"))
|
||||||
panel = wx.Panel(self)
|
panel = wx.Panel(self)
|
||||||
sizer = wx.BoxSizer(wx.VERTICAL)
|
sizer = wx.BoxSizer(wx.VERTICAL)
|
||||||
self.followers = wx.CheckBox(panel, -1, _("Add followers to database"))
|
self.followers = wx.CheckBox(panel, -1, _("Add &followers to database"))
|
||||||
self.friends = wx.CheckBox(panel, -1, _("Add following to database"))
|
self.friends = wx.CheckBox(panel, -1, _("Add f&ollowing to database"))
|
||||||
sizer.Add(self.followers, 0, wx.ALL, 5)
|
sizer.Add(self.followers, 0, wx.ALL, 5)
|
||||||
sizer.Add(self.friends, 0, wx.ALL, 5)
|
sizer.Add(self.friends, 0, wx.ALL, 5)
|
||||||
ok = wx.Button(panel, wx.ID_OK)
|
ok = wx.Button(panel, wx.ID_OK)
|
||||||
|
@ -12,7 +12,7 @@ class generalAccount(wx.Panel, baseDialog.BaseWXDialog):
|
|||||||
super(generalAccount, self).__init__(parent)
|
super(generalAccount, self).__init__(parent)
|
||||||
sizer = wx.BoxSizer(wx.VERTICAL)
|
sizer = wx.BoxSizer(wx.VERTICAL)
|
||||||
userAutocompletionBox = wx.StaticBox(self, label=_("User autocompletion settings"))
|
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, _("Scan acc&ount and add followers and following users to the user autocompletion database"))
|
||||||
self.userAutocompletionManage = wx.Button(self, wx.ID_ANY, _("&Manage autocompletion database"))
|
self.userAutocompletionManage = wx.Button(self, wx.ID_ANY, _("&Manage autocompletion database"))
|
||||||
autocompletionSizer = wx.StaticBoxSizer(userAutocompletionBox, wx.HORIZONTAL)
|
autocompletionSizer = wx.StaticBoxSizer(userAutocompletionBox, wx.HORIZONTAL)
|
||||||
autocompletionSizer.Add(self.userAutocompletionScan, 0, wx.ALL, 5)
|
autocompletionSizer.Add(self.userAutocompletionScan, 0, wx.ALL, 5)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user