Skip to content
Snippets Groups Projects
Commit ef056554 authored by akiraohgaki's avatar akiraohgaki
Browse files

Fix for window size

parent 744a0019
No related branches found
No related tags found
No related merge requests found
......@@ -85,6 +85,8 @@ ApplicationWindow {
function fixWindowSize(dialog) {
if (dialog.visible) {
app.height = dialog.implicitHeight + (dialog.anchors.margins * 2);
app.minimumHeight = app.height;
app.maximumHeight = app.height;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment