commit c3e16eb2ac3025963675b2904e47e4742d31bc94
parent 354bea632df964ff598fd8dc23bcbfa3ae64abac
Author: falkTX <falktx@falktx.com>
Date: Sat, 21 Aug 2021 21:24:42 +0100
Remove width and height from FileBrowserOptions, were never used
Signed-off-by: falkTX <falktx@falktx.com>
Diffstat:
1 file changed, 0 insertions(+), 6 deletions(-)
diff --git 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