Change position of checkbox

main
Bob Mottram 2021-08-13 18:34:23 +01:00
parent 11c02dcfb9
commit d81b8e1be3
1 changed files with 3 additions and 3 deletions

View File

@ -1114,9 +1114,6 @@ def _htmlEditProfileGraphicDesign(baseDir: str, translate: {}) -> str:
lowBandwidth = getConfigParam(baseDir, 'lowBandwidth')
if not lowBandwidth:
lowBandwidth = False
graphicsStr += \
editCheckBox(translate['Low Bandwidth'], 'lowBandwidth',
bool(lowBandwidth))
graphicsStr += _htmlThemesDropdown(baseDir, translate)
graphicsStr += \
' <label class="labels">' + \
@ -1130,6 +1127,9 @@ def _htmlEditProfileGraphicDesign(baseDir: str, translate: {}) -> str:
graphicsStr += \
' <button type="submit" class="button" ' + \
'name="submitExportTheme">➤</button>\n'
graphicsStr += \
editCheckBox(translate['Low Bandwidth'], 'lowBandwidth',
bool(lowBandwidth))
graphicsStr += endEditSection()
return graphicsStr