From 0c987fa8947960f9abacbd3e4967239c7ecd98f3 Mon Sep 17 00:00:00 2001 From: Vadim Lopatin Date: Thu, 19 Mar 2015 10:33:17 +0300 Subject: [PATCH] high DPI support --- src/dlangide.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dlangide.d b/src/dlangide.d index 5f4faeb..6801db1 100644 --- a/src/dlangide.d +++ b/src/dlangide.d @@ -57,7 +57,7 @@ extern (C) int UIAppMain(string[] args) { } // create window - Window window = Platform.instance.createWindow("Dlang IDE", null, WindowFlag.Resizable, pointsToPixels(700), pointsToPixels(470)); + Window window = Platform.instance.createWindow("Dlang IDE", null, WindowFlag.Resizable, 700, 470); IDEFrame frame = new IDEFrame(window);