Skip to content

Commit

Permalink
Show fold line by default (so it's clearer there are hidden lines).
Browse files Browse the repository at this point in the history
git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@1537 ea778897-0a13-0410-b9d1-a72fbfd435f5
  • Loading branch information
ntrel committed May 15, 2007
1 parent 1b41744 commit ea5f829
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions ChangeLog
@@ -1,3 +1,9 @@
2007-05-15 Nick Treleaven <nick.treleaven@btinternet.com>

* src/highlighting.c, data/filetypes.common:
Show fold line by default (so it's clearer there are hidden lines).


2007-05-15 Enrico Tröger <enrico.troeger@uvena.de>

* scintilla/ScintillaGTK.cxx:
Expand Down
2 changes: 1 addition & 1 deletion data/filetypes.common
Expand Up @@ -43,7 +43,7 @@ folding_style=1;1;false;false
# 0 to disable
# 1 to draw the line above folded text
# 2 to draw the line below folded text
folding_horiz_line=0;0;false;false
folding_horiz_line=2;0;false;false

# only first argument is interpreted, sets whether all defined colours should be inverted
invert_all=0;0;false;false
2 changes: 1 addition & 1 deletion src/highlighting.c
Expand Up @@ -394,7 +394,7 @@ static void styleset_common_init(void)
0, 0, &tmp_style);
common_style_set.invert_all = tmp_style.foreground;
get_keyfile_int(config, config_home, "styling", "folding_horiz_line",
0, 0, &tmp_style);
2, 0, &tmp_style);
common_style_set.folding_style.draw_line = tmp_style.foreground;
get_keyfile_int(config, config_home, "styling", "caret_width",
1, 0, &tmp_style);
Expand Down

0 comments on commit ea5f829

Please sign in to comment.