Kaydet (Commit) be322a87 authored tarafından Nick Treleaven's avatar Nick Treleaven

Show line wrap symbol at start of line for wrapped lines.

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@2010 ea778897-0a13-0410-b9d1-a72fbfd435f5
üst c25e3051
2007-11-02 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
* src/sciwrappers.c:
Show line wrap symbol at start of line for wrapped lines.
2007-11-02 Enrico Tröger <enrico.troeger@uvena.de> 2007-11-02 Enrico Tröger <enrico.troeger@uvena.de>
* src/build.c, src/makefile.win32: Add exit code detection for Windows. * src/build.c, src/makefile.win32: Add exit code detection for Windows.
......
...@@ -167,7 +167,7 @@ void sci_set_lines_wrapped(ScintillaObject* sci, gboolean set ) ...@@ -167,7 +167,7 @@ void sci_set_lines_wrapped(ScintillaObject* sci, gboolean set )
if (set) if (set)
{ {
SSM(sci,SCI_SETWRAPMODE,SC_WRAP_WORD,0); SSM(sci,SCI_SETWRAPMODE,SC_WRAP_WORD,0);
SSM(sci, SCI_SETWRAPVISUALFLAGS, SC_WRAPVISUALFLAG_END, 0); SSM(sci, SCI_SETWRAPVISUALFLAGS, SC_WRAPVISUALFLAG_END | SC_WRAPVISUALFLAG_START, 0);
} }
else else
SSM(sci,SCI_SETWRAPMODE,SC_WRAP_NONE,0); SSM(sci,SCI_SETWRAPMODE,SC_WRAP_NONE,0);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment