mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-06 18:24:26 +08:00
Giving up on high DPI readiness - remove tweaks which mostly don't work as expected, and even differently on various computers. Instead, let Windows blur fonts.
This commit is contained in:
@ -149,8 +149,8 @@ procedure TfrmExportGrid.FormDestroy(Sender: TObject);
|
||||
begin
|
||||
// Store settings
|
||||
if not FHiddenCopyMode then begin
|
||||
AppSettings.WriteInt(asGridExportWindowWidth, Round(Width / DpiScaleFactor(Self)));
|
||||
AppSettings.WriteInt(asGridExportWindowHeight, Round(Height / DpiScaleFactor(Self)));
|
||||
AppSettings.WriteInt(asGridExportWindowWidth, Width);
|
||||
AppSettings.WriteInt(asGridExportWindowHeight, Height);
|
||||
if ModalResult = mrOK then begin
|
||||
AppSettings.WriteBool(asGridExportOutputCopy, radioOutputCopyToClipboard.Checked);
|
||||
AppSettings.WriteBool(asGridExportOutputFile, radioOutputFile.Checked);
|
||||
|
Reference in New Issue
Block a user