Revision: 1231 http://svn.sourceforge.net/geany/?rev=1231&view=rev Author: eht16 Date: 2007-01-26 01:52:24 -0800 (Fri, 26 Jan 2007)
Log Message: ----------- Applied patch from Jeff Pohlmeyer to clear the line marker when clearing the compile error markers.
Modified Paths: -------------- trunk/ChangeLog trunk/src/document.c
Modified: trunk/ChangeLog =================================================================== --- trunk/ChangeLog 2007-01-25 16:25:35 UTC (rev 1230) +++ trunk/ChangeLog 2007-01-26 09:52:24 UTC (rev 1231) @@ -1,3 +1,9 @@ +2007-01-26 Enrico Tröger enrico.troeger@uvena.de + + * src/document.c: Applied patch from Jeff Pohlmeyer to clear the line + marker when clearing the compile error markers. + + 2007-01-25 Enrico Tröger enrico.troeger@uvena.de
* src/vte.c: Applied patch from Jeff Pohlmeyer to improve loading of
Modified: trunk/src/document.c =================================================================== --- trunk/src/document.c 2007-01-25 16:25:35 UTC (rev 1230) +++ trunk/src/document.c 2007-01-26 09:52:24 UTC (rev 1231) @@ -1507,6 +1507,8 @@ sci_start_styling(doc_list[idx].sci, 0, INDIC2_MASK); sci_set_styling(doc_list[idx].sci, last_pos, 0); } + // delete the yellow marker if still set + if (! app->show_markers_margin) sci_marker_delete_all(doc_list[idx].sci, 0); }
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.