mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-17 14:07:46 +08:00
fixes #1447
This commit is contained in:
@@ -9,6 +9,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||
- #1443: Chinese (simplified) translation improvements
|
||||
- #1437: Norwegian translation improvements
|
||||
### Fixed
|
||||
- #1447: Exception occurs when resetting layout
|
||||
- #1428: Fixed a rare error when checking for FIPS
|
||||
- #1426: Tabbing is reversed in config window
|
||||
- #1425: Connections didn't always respect the Panel property
|
||||
|
||||
@@ -693,15 +693,9 @@ namespace mRemoteNG.UI.Forms
|
||||
pnlDock.DockTopPortion = pnlDock.Height * 0.25;
|
||||
pnlDock.DockBottomPortion = pnlDock.Height * 0.25;
|
||||
|
||||
Windows.TreeForm.DockAreas = DockAreas.DockBottom | DockAreas.DockLeft | DockAreas.DockRight |
|
||||
DockAreas.DockTop | DockAreas.Float;
|
||||
Windows.TreeForm.Show(pnlDock, DockState.DockLeft);
|
||||
Windows.ConfigForm.DockAreas = DockAreas.DockBottom | DockAreas.DockLeft | DockAreas.DockRight |
|
||||
DockAreas.DockTop | DockAreas.Float;
|
||||
Windows.ConfigForm.Show(pnlDock);
|
||||
Windows.ConfigForm.DockTo(Windows.TreeForm.Pane, DockStyle.Bottom, -1);
|
||||
Windows.ErrorsForm.DockAreas = DockAreas.DockBottom | DockAreas.DockLeft | DockAreas.DockRight |
|
||||
DockAreas.DockTop | DockAreas.Float;
|
||||
Windows.ErrorsForm.Show(pnlDock, DockState.DockBottomAutoHide);
|
||||
Windows.ScreenshotForm.Hide();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user