Skip to content
This repository has been archived by the owner on Jul 3, 2023. It is now read-only.

Commit

Permalink
Fix alignment error message (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
cbialobos committed Jul 13, 2020
1 parent 0220e98 commit da530cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion esphomeflasher/gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ def on_pick_file(event):
serial_boxsizer = wx.BoxSizer(wx.HORIZONTAL)
serial_boxsizer.Add(self.choice, 1, wx.EXPAND)
serial_boxsizer.AddStretchSpacer(0)
serial_boxsizer.Add(reload_button, 0, wx.ALIGN_RIGHT, 20)
serial_boxsizer.Add(reload_button, 0, wx.ALIGN_NOT, 20)

button = wx.Button(panel, -1, "Flash ESP")
button.Bind(wx.EVT_BUTTON, on_clicked)
Expand Down

0 comments on commit da530cd

Please sign in to comment.