Skip to content

Commit

Permalink
#2744 settings: limit indent spaces between 2 and 5
Browse files Browse the repository at this point in the history
  • Loading branch information
pbek committed Mar 13, 2023
1 parent e50513f commit 33a77fa
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# QOwnNotes Changelog

## 23.3.2
- the indent spaces are now limited between 2 and 5 in the settings, because
that's the range the [md4c](https://github.com/qownnotes/md4c) supports when
converting Markdown to HTML (for [#2744](https://github.com/pbek/QOwnNotes/issues/2744))

## 23.3.1
- the whole **AppImage build process was re-invented** because the necessary
Ubuntu 18.04 build system will vanish from GitHub with the end of March
Expand Down
5 changes: 4 additions & 1 deletion src/dialogs/settingsdialog.ui
Original file line number Diff line number Diff line change
Expand Up @@ -5453,7 +5453,10 @@ p, li { white-space: pre-wrap; }
<item row="1" column="1">
<widget class="QSpinBox" name="indentSizeSpinBox">
<property name="minimum">
<number>1</number>
<number>2</number>
</property>
<property name="maximum">
<number>5</number>
</property>
</widget>
</item>
Expand Down

0 comments on commit 33a77fa

Please sign in to comment.