Fix editors

This commit is contained in:
DarkPhoenix
2020-04-25 17:27:29 +03:00
parent 1090589cb2
commit f259df85cd
4 changed files with 5 additions and 5 deletions

View File

@@ -402,7 +402,7 @@ class SkillTreeView(wx.Panel):
setattr(self, "{}Btn".format(name.lower()), btn)
btn.Enable(True)
btn.SetToolTip("%s skills %s clipboard" % (name, direction))
bSizerButtons.Add(btn, 0, wx.ALIGN_CENTER_HORIZONTAL | wx.ALIGN_RIGHT | wx.ALL, 5)
bSizerButtons.Add(btn, 0, wx.ALL, 5)
btn.Bind(wx.EVT_BUTTON, getattr(self, "{}Skills".format(name.lower())))
pmainSizer.Add(bSizerButtons, 0, wx.EXPAND, 5)