[python] settingsapp: make sure wx window id < 32767

This commit is contained in:
Felix Ruess
2015-11-23 11:53:00 +01:00
parent d2dab9f19c
commit ad824555e6
@@ -15,8 +15,8 @@ from settings_tool import IvySettingsInterface
def create(parent, ac_ids):
return SettingsFrame(parent, ac_ids)
SLIDER_ID_OFFSET = 250000
BUTTON_ID_OFFSET = 2 * 250000
SLIDER_ID_OFFSET = 30000
BUTTON_ID_OFFSET = 31000
SLIDER_FACTOR = 100
# Wraps TextCtrl to provide added functionality