Revision: 1537 http://svn.sourceforge.net/geany/?rev=1537&view=rev Author: ntrel Date: 2007-05-15 09:04:37 -0700 (Tue, 15 May 2007)
Log Message: ----------- Show fold line by default (so it's clearer there are hidden lines).
Modified Paths: -------------- trunk/ChangeLog trunk/data/filetypes.common trunk/src/highlighting.c
Modified: trunk/ChangeLog =================================================================== --- trunk/ChangeLog 2007-05-15 15:39:26 UTC (rev 1536) +++ trunk/ChangeLog 2007-05-15 16:04:37 UTC (rev 1537) @@ -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:
Modified: trunk/data/filetypes.common =================================================================== --- trunk/data/filetypes.common 2007-05-15 15:39:26 UTC (rev 1536) +++ trunk/data/filetypes.common 2007-05-15 16:04:37 UTC (rev 1537) @@ -43,7 +43,7 @@ # 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
Modified: trunk/src/highlighting.c =================================================================== --- trunk/src/highlighting.c 2007-05-15 15:39:26 UTC (rev 1536) +++ trunk/src/highlighting.c 2007-05-15 16:04:37 UTC (rev 1537) @@ -394,7 +394,7 @@ 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);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.