diff options
author | luz.paz <luzpaz@users.noreply.github.com> | 2018-02-03 14:58:58 +0100 |
---|---|---|
committer | Marcus Müller <marcus@hostalia.de> | 2018-02-03 14:58:58 +0100 |
commit | b163b242e06c9f714b05f57f7180c760f021cbb6 (patch) | |
tree | 84ab2b2c624bed231e0932bfaedbfc7c4e9cc703 /gr-wxgui/python/wxgui/scope_window.py | |
parent | a12b1a9ecf143d3adcb0c25ca535012445370631 (diff) |
Comment typo fixing.
Luzpaz went ahead and found typos using `codespell -q 3`.
Diffstat (limited to 'gr-wxgui/python/wxgui/scope_window.py')
-rw-r--r-- | gr-wxgui/python/wxgui/scope_window.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gr-wxgui/python/wxgui/scope_window.py b/gr-wxgui/python/wxgui/scope_window.py index 71e2b8e285..ebca318c55 100644 --- a/gr-wxgui/python/wxgui/scope_window.py +++ b/gr-wxgui/python/wxgui/scope_window.py @@ -121,7 +121,7 @@ class control_panel(wx.Panel): parent.subscribe(USE_PERSISTENCE_KEY, widget.Enable) widget.Enable(parent[USE_PERSISTENCE_KEY]) parent.subscribe(USE_PERSISTENCE_KEY, widget.ShowItems) - #allways show initially, so room is reserved for them + #always show initially, so room is reserved for them widget.ShowItems(True) # (parent[USE_PERSISTENCE_KEY]) parent.subscribe(USE_PERSISTENCE_KEY, self._update_layout) @@ -407,7 +407,7 @@ class control_panel(wx.Panel): ################################################## def _update_layout(self,key): # Just ignore the key value we get - # we only need to now that the visability or size of something has changed + # we only need to now that the visibility or size of something has changed self.parent.Layout() #self.parent.Fit() |