|
From: <set...@us...> - 2006-05-04 23:16:52
|
Revision: 1351 Author: sethdill Date: 2006-05-04 16:16:48 -0700 (Thu, 04 May 2006) ViewCVS: http://svn.sourceforge.net/frontierkernel/?rev=1351&view=rev Log Message: ----------- Fixed selection/highlight problem with quickscript window. Run a quickscript that generates an error, and the contents of the QS window are selected, then the error window pops up. Click on the "Go To" button in the error window, and the text-insertion cursor is placed on the line that generated the error. Before the fix, the rest of the script would still be highlighted (making it look selected). Now the text area is redrawn after the selection is updated, so everything looks right. Modified Paths: -------------- Frontier/trunk/Common/source/wpengine.c Modified: Frontier/trunk/Common/source/wpengine.c =================================================================== --- Frontier/trunk/Common/source/wpengine.c 2006-05-04 21:41:26 UTC (rev 1350) +++ Frontier/trunk/Common/source/wpengine.c 2006-05-04 23:16:48 UTC (rev 1351) @@ -4373,6 +4373,8 @@ wpdirtyselectioninfo (); + wpupdate(); // 2006-05-04 smd: bug fix. background color will now be restored properly, so only the selected text looks selected + return (true); } /*wpsetselection*/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |