mirror of https://gitlab.com/bashrc2/epicyon
Change position of checkbox
parent
11c02dcfb9
commit
d81b8e1be3
|
@ -1114,9 +1114,6 @@ def _htmlEditProfileGraphicDesign(baseDir: str, translate: {}) -> str:
|
||||||
lowBandwidth = getConfigParam(baseDir, 'lowBandwidth')
|
lowBandwidth = getConfigParam(baseDir, 'lowBandwidth')
|
||||||
if not lowBandwidth:
|
if not lowBandwidth:
|
||||||
lowBandwidth = False
|
lowBandwidth = False
|
||||||
graphicsStr += \
|
|
||||||
editCheckBox(translate['Low Bandwidth'], 'lowBandwidth',
|
|
||||||
bool(lowBandwidth))
|
|
||||||
graphicsStr += _htmlThemesDropdown(baseDir, translate)
|
graphicsStr += _htmlThemesDropdown(baseDir, translate)
|
||||||
graphicsStr += \
|
graphicsStr += \
|
||||||
' <label class="labels">' + \
|
' <label class="labels">' + \
|
||||||
|
@ -1130,6 +1127,9 @@ def _htmlEditProfileGraphicDesign(baseDir: str, translate: {}) -> str:
|
||||||
graphicsStr += \
|
graphicsStr += \
|
||||||
' <button type="submit" class="button" ' + \
|
' <button type="submit" class="button" ' + \
|
||||||
'name="submitExportTheme">➤</button>\n'
|
'name="submitExportTheme">➤</button>\n'
|
||||||
|
graphicsStr += \
|
||||||
|
editCheckBox(translate['Low Bandwidth'], 'lowBandwidth',
|
||||||
|
bool(lowBandwidth))
|
||||||
|
|
||||||
graphicsStr += endEditSection()
|
graphicsStr += endEditSection()
|
||||||
return graphicsStr
|
return graphicsStr
|
||||||
|
|
Loading…
Reference in New Issue