Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Documents/Changelog/Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

## 2026-04-20 - Build 2604 (Version 105-LTS - Patch 2) - April 2026

* Resolved [#2927](https://github.com/Krypton-Suite/Standard-Toolkit/issues/2927), "Populate from Base" task freezes Visual Studio
* Resolved [#2132](https://github.com/Krypton-Suite/Standard-Toolkit/issues/2132), Drag feedback artifact: when dragging a dockable page, a small dark artefact appeared in the top-left corner of the screen. The drop feedback window (`DropSolidWindow`) was created at (0,0); it is now positioned off-screen initially and when no drop target is matched.
* Implemented [#2952](https://github.com/Krypton-Suite/Standard-Toolkit/issues/2962), Set license header via `editorconfig`
* Resolved [#2935](https://github.com/Krypton-Suite/Standard-Toolkit/issues/2935), Maximized MDI window form border drawn on wrong monitor (secondary monitor); `DropSolidWindow` now uses screen coordinates for `DesktopBounds`; non-client border painting uses a DC compatible with the window's monitor
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1966,6 +1966,16 @@ public void ResetToDefaults(bool silent)
{
ResetOperation(null);
}
else if (this.InDesignMode())
{
// In design mode (e.g. VS designer), run synchronously to avoid PerformOperation
// deadlock/freeze with ModalWaitDialog and worker thread (see issue #2927)
ResetOperation(null);

KryptonMessageBox.Show("Reset of palette is completed.",
"Palette Reset",
KryptonMessageBoxButtons.OK);
}
else
{
// Perform the reset operation on a separate worker thread
Expand Down Expand Up @@ -2008,6 +2018,16 @@ public void PopulateFromBase(bool silent)
{
PopulateFromBaseOperation(null);
}
else if (this.InDesignMode())
{
// In design mode (e.g. VS designer), run synchronously to avoid PerformOperation
// deadlock/freeze with ModalWaitDialog and worker thread (see issue #2927)
PopulateFromBaseOperation(null);

KryptonMessageBox.Show("Relevant values have been populated.",
"Populate Values",
KryptonMessageBoxButtons.OK);
}
else
{
// Perform the reset operation on a separate worker thread
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading