Skip to content

Commit

Permalink
Fix and clarify block wrap preferences (DistributedProofreaders#512)
Browse files Browse the repository at this point in the history
1. Add `/#` to tooltip for blockquote settings
2. Add `Nowrap` to label for block settings
3. Remove `/P` from tooltip for block settings
  • Loading branch information
windymilla authored Oct 29, 2024
1 parent 2765a2c commit 65887a9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/guiguts/misc_dialogs.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,19 +171,19 @@ def add_label_spinbox(row: int, label: str, key: PrefKey, tooltip: str) -> None:
2,
"Blockquote Indent:",
PrefKey.WRAP_BLOCKQUOTE_INDENT,
"Extra indent for each level of blockquotes",
"Extra indent for each level of /# blockquotes",
)
add_label_spinbox(
3,
"Blockquote Right Margin:",
PrefKey.WRAP_BLOCKQUOTE_RIGHT_MARGIN,
"Right margin for blockquotes",
"Right margin for /# blockquotes",
)
add_label_spinbox(
4,
"Block Indent:",
"Nowrap Block Indent:",
PrefKey.WRAP_BLOCK_INDENT,
"Indent for /*, /P, /L blocks",
"Indent for /* and /L blocks",
)
add_label_spinbox(
5,
Expand Down

0 comments on commit 65887a9

Please sign in to comment.