aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMike Skec <skec@protonmail.ch>2021-02-19 16:53:17 +1100
committerFelix Queißner <felix@ib-queissner.de>2021-02-20 12:10:48 +0100
commit0659d87271ea4943ed61f59beeba4ba636b6dfc1 (patch)
treedc0f8db941067643768bf7831a23fe43c7b41746 /src
parent58ebb115f16d0fdc9d784d4cf94e0ba191eb07f9 (diff)
downloadkristall-0659d87271ea4943ed61f59beeba4ba636b6dfc1.tar.gz
Change default blockquote indent to 1
I think it's a nicer default
Diffstat (limited to 'src')
-rw-r--r--src/about/help.gemini2
-rw-r--r--src/documentstyle.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/about/help.gemini b/src/about/help.gemini
index 2afb668..95f7303 100644
--- a/src/about/help.gemini
+++ b/src/about/help.gemini
@@ -203,7 +203,7 @@ Most items in the *Style* category have either a [Font], [Color] or both buttons
* [Par] controls indent size of paragraphs (default: 1)
* [Hea] controls indent size of headings (default: 0)
-* [Quo] controls indent size of blockquotes (default: 2)
+* [Quo] controls indent size of blockquotes (default: 1)
* [Lst] controls indent size of unordered lists (default: 2)
[Presets] is a cool feature to save, restore and share your color themes. The dropdown contains a list of all previously created colors schemes. With the [+] button you can create a scheme with a unique name. The floppy disk button will override the currently selected preset with all the settings displayed above. The folder button will restore a previously saved preset. The last two buttons allow you to import/export presets to disk and share them with your friends! Share all your beautiful color schemes with the world!
diff --git a/src/documentstyle.cpp b/src/documentstyle.cpp
index 4d2068f..a1a0f29 100644
--- a/src/documentstyle.cpp
+++ b/src/documentstyle.cpp
@@ -147,7 +147,7 @@ DocumentStyle::DocumentStyle(bool do_init) : theme(Fixed),
text_width_enabled(true),
line_height_p(5.0),
line_height_h(0.0),
- indent_bq(2), indent_p(1), indent_h(0), indent_l(2)
+ indent_bq(1), indent_p(1), indent_h(0), indent_l(2)
{
if (do_init) this->initialiseDefaultFonts();
}