Commit fbcf5cfb63696806882b1ca85b4e26f7b8dba7c7
1 parent
e7aa626f
Exists in
master
and in
67 other branches
ENH: Close and nav button disabled from window preferences
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
invesalius/gui/preferences.py
... | ... | @@ -31,7 +31,7 @@ class Preferences(wx.Dialog): |
31 | 31 | if AGW: |
32 | 32 | self.book = fnb.FlatNotebook(self, wx.ID_ANY, agwStyle=bookStyle) |
33 | 33 | else: |
34 | - self.book = fnb.FlatNotebook(self, wx.ID_ANY, style=bookStyle) | |
34 | + self.book = fnb.FlatNotebook(self, wx.ID_ANY, agwStyle=bookStyle) | |
35 | 35 | |
36 | 36 | sizer.Add(self.book, 80, wx.EXPAND|wx.ALL) |
37 | 37 | ... | ... |