Browse Source

Fix http://community.sharpdevelop.net/forums/t/12329.aspx Error List, Task and Thread pads selection is hidden when losing focus

pull/14/head
Daniel Grunwald 15 years ago
parent
commit
b9b8378eae
  1. 1
      src/AddIns/Debugger/Debugger.AddIn/Pads/RunningThreadsPad.cs
  2. 1
      src/Main/Base/Project/Src/Gui/Pads/TaskList/TaskView.cs

1
src/AddIns/Debugger/Debugger.AddIn/Pads/RunningThreadsPad.cs

@ -32,6 +32,7 @@ namespace ICSharpCode.SharpDevelop.Gui.Pads @@ -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;

1
src/Main/Base/Project/Src/Gui/Pads/TaskList/TaskView.cs

@ -106,6 +106,7 @@ namespace ICSharpCode.SharpDevelop.Gui @@ -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;

Loading…
Cancel
Save