From c3e16eb2ac3025963675b2904e47e4742d31bc94 Mon Sep 17 00:00:00 2001 From: falkTX Date: Sat, 21 Aug 2021 21:25:09 +0100 Subject: [PATCH] Remove width and height from FileBrowserOptions, were never used Signed-off-by: falkTX --- dgl/Window.hpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/dgl/Window.hpp b/dgl/Window.hpp index b5931ecb..4cc5a0fc 100644 --- a/dgl/Window.hpp +++ b/dgl/Window.hpp @@ -70,10 +70,6 @@ public: const char* startDir; /** File browser dialog window title, uses "FileBrowser" if null */ const char* title; - /** File browser dialog window width */ - uint width; - /** File browser dialog window height */ - uint height; // TODO file filter /** @@ -98,8 +94,6 @@ public: FileBrowserOptions() : startDir(nullptr), title(nullptr), - width(0), - height(0), buttons() {} }; #endif // DGL_FILE_BROWSER_DISABLED