mirror of https://gitlab.com/bashrc2/epicyon
Increase height of textboxes
parent
7bfb6c8ac9
commit
b89f0e658f
|
@ -2362,7 +2362,7 @@ def _html_edit_profile_filtering(base_dir: str, nickname: str, domain: str,
|
|||
' <br><label class="labels">' + \
|
||||
translate['One per line'] + '</label>\n' + \
|
||||
' <textarea id="message" ' + \
|
||||
'name="filteredWords" style="height:200px" spellcheck="false">' + \
|
||||
'name="filteredWords" style="height:500px" spellcheck="false">' + \
|
||||
filter_str + '</textarea>\n' + \
|
||||
' <br><b><label class="labels">' + \
|
||||
translate['Filtered words within bio'] + '</label></b>\n' + \
|
||||
|
@ -2375,7 +2375,7 @@ def _html_edit_profile_filtering(base_dir: str, nickname: str, domain: str,
|
|||
translate['Word Replacements'] + '</label></b>\n' + \
|
||||
' <br><label class="labels">A -> B</label>\n' + \
|
||||
' <textarea id="message" name="switchwords" ' + \
|
||||
'style="height:200px" spellcheck="false">' + \
|
||||
'style="height:500px" spellcheck="false">' + \
|
||||
switch_str + '</textarea>\n' + \
|
||||
' <br><b><label class="labels">' + \
|
||||
translate['Autogenerated Hashtags'] + '</label></b>\n' + \
|
||||
|
@ -2387,13 +2387,13 @@ def _html_edit_profile_filtering(base_dir: str, nickname: str, domain: str,
|
|||
translate['Autogenerated Content Warnings'] + '</label></b>\n' + \
|
||||
' <br><label class="labels">A -> B</label>\n' + \
|
||||
' <textarea id="message" name="autoCW" ' + \
|
||||
'style="height:200px" spellcheck="true">' + auto_cw + '</textarea>\n'
|
||||
'style="height:500px" spellcheck="true">' + auto_cw + '</textarea>\n'
|
||||
|
||||
idx = 'Blocked accounts, one per line, in the form ' + \
|
||||
'nickname@domain or *@blockeddomain'
|
||||
edit_profile_form += \
|
||||
edit_text_area(translate['Blocked accounts'], None, 'blocked',
|
||||
blocked_str, 200, '', False)
|
||||
blocked_str, 500, '', False)
|
||||
|
||||
# import and export blocks
|
||||
edit_profile_form += \
|
||||
|
|
Loading…
Reference in New Issue