mirror of
https://github.com/MCV-Software/TWBlue.git
synced 2025-07-17 21:56:07 -04:00
Better shortcut, add shortcuts for add followers and following to database checkboxes in scan dialog as well
This commit is contained in:
@@ -8,8 +8,8 @@ class autocompletionScanDialog(widgetUtils.BaseDialog):
|
||||
super(autocompletionScanDialog, self).__init__(parent=None, id=-1, title=_(u"Autocomplete users' settings"))
|
||||
panel = wx.Panel(self)
|
||||
sizer = wx.BoxSizer(wx.VERTICAL)
|
||||
self.followers = wx.CheckBox(panel, -1, _("Add followers to database"))
|
||||
self.friends = wx.CheckBox(panel, -1, _("Add following to database"))
|
||||
self.followers = wx.CheckBox(panel, -1, _("Add &followers to database"))
|
||||
self.friends = wx.CheckBox(panel, -1, _("Add f&ollowing to database"))
|
||||
sizer.Add(self.followers, 0, wx.ALL, 5)
|
||||
sizer.Add(self.friends, 0, wx.ALL, 5)
|
||||
ok = wx.Button(panel, wx.ID_OK)
|
||||
|
Reference in New Issue
Block a user