From 4588382ccd89c4aefe3a400d3ef033defa778e7c Mon Sep 17 00:00:00 2001 From: cxl Date: Thu, 26 Jun 2014 12:37:18 +0000 Subject: [PATCH] ide: improved error handling git-svn-id: svn://ultimatepp.org/upp/trunk@7470 f0d560ea-af0d-0410-9eb7-867de7ffcac7 --- uppsrc/ide/idewin.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/uppsrc/ide/idewin.cpp b/uppsrc/ide/idewin.cpp index 81315e0a9..704da2425 100644 --- a/uppsrc/ide/idewin.cpp +++ b/uppsrc/ide/idewin.cpp @@ -375,9 +375,9 @@ Ide::Ide() ffound.ColumnAt(2).SetDisplay(Single()); errors.Horz(error, notes); - error.WhenSel = THISBACK(ShowError); - notes.WhenSel = THISBACK(ShowNote); - ffound.WhenSel = THISBACK(ShowFound); + error.WhenSel = error.WhenLeftClick = THISBACK(ShowError); + notes.WhenSel = notes.WhenLeftClick = THISBACK(ShowNote); + ffound.WhenSel = ffound.WhenLeftClick = THISBACK(ShowFound); console.WhenLine = THISBACK(ConsoleLine); editor_bottom.Vert(right_split, bottom);