Skip to content

Commit

Permalink
fix typo in version check
Browse files Browse the repository at this point in the history
  • Loading branch information
mcorino committed Jan 3, 2024
1 parent ffdd19f commit d451b0c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rakelib/lib/director/persistent_window.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ class PersistentWindow < Director

def setup
spec.items << 'wxPersistentTLW' << 'wxPersistentBookCtrl' << 'wxPersistentTreeBookCtrl'
if Config.instance.wx_version >= '3.0.0'
# before 3.0.0 this was not properly available
if Config.instance.wx_version >= '3.3.0'
# before 3.3.0 this was not properly available
spec.items << 'wxPersistentComboBox'
end
super
Expand Down

0 comments on commit d451b0c

Please sign in to comment.