From b9b8378eae343c6db3dc28b1f5ab76f307f968bd Mon Sep 17 00:00:00 2001 From: Daniel Grunwald Date: Sat, 4 Dec 2010 22:51:43 +0100 Subject: [PATCH] Fix http://community.sharpdevelop.net/forums/t/12329.aspx Error List, Task and Thread pads selection is hidden when losing focus --- src/AddIns/Debugger/Debugger.AddIn/Pads/RunningThreadsPad.cs | 1 + src/Main/Base/Project/Src/Gui/Pads/TaskList/TaskView.cs | 1 + 2 files changed, 2 insertions(+) diff --git a/src/AddIns/Debugger/Debugger.AddIn/Pads/RunningThreadsPad.cs b/src/AddIns/Debugger/Debugger.AddIn/Pads/RunningThreadsPad.cs index c8adde832d..3afbadc12b 100644 --- a/src/AddIns/Debugger/Debugger.AddIn/Pads/RunningThreadsPad.cs +++ b/src/AddIns/Debugger/Debugger.AddIn/Pads/RunningThreadsPad.cs @@ -32,6 +32,7 @@ namespace ICSharpCode.SharpDevelop.Gui.Pads protected override void InitializeComponents() { runningThreadsList = new ListView(); + runningThreadsList.HideSelection = false; runningThreadsList.FullRowSelect = true; runningThreadsList.AutoArrange = true; runningThreadsList.Alignment = ListViewAlignment.Left; diff --git a/src/Main/Base/Project/Src/Gui/Pads/TaskList/TaskView.cs b/src/Main/Base/Project/Src/Gui/Pads/TaskList/TaskView.cs index 06986a6249..f0e8d07846 100644 --- a/src/Main/Base/Project/Src/Gui/Pads/TaskList/TaskView.cs +++ b/src/Main/Base/Project/Src/Gui/Pads/TaskList/TaskView.cs @@ -106,6 +106,7 @@ namespace ICSharpCode.SharpDevelop.Gui this.Columns.Add(file); this.Columns.Add(path); + this.HideSelection = false; this.FullRowSelect = true; this.AutoArrange = true; this.Alignment = ListViewAlignment.Left;