mirror of
https://git.do.srb2.org/STJr/ZoneBuilder.git
synced 2025-04-22 09:31:14 +00:00
Fixed, Tag Explorer: in some cases Tag Explorer update logic was switching focus from the Script Editor to the main window.
This commit is contained in:
parent
5fd95f703d
commit
264ae55a03
1 changed files with 2 additions and 2 deletions
|
@ -659,8 +659,8 @@ namespace CodeImp.DoomBuilder.TagExplorer
|
|||
//update Export button
|
||||
bExportToFile.Enabled = (treeView.Nodes != null && treeView.Nodes.Count > 0);
|
||||
|
||||
//loose focus
|
||||
if(focusDisplay) General.Interface.FocusDisplay();
|
||||
// Loose focus when the main windows is active
|
||||
if(focusDisplay && Form.ActiveForm == General.Interface) General.Interface.FocusDisplay();
|
||||
}
|
||||
|
||||
//tag/action search
|
||||
|
|
Loading…
Reference in a new issue