Skip to content
Snippets Groups Projects
Commit ed9a726c authored by akiraohgaki's avatar akiraohgaki Committed by GitHub
Browse files

Merge pull request #44 from ocs-url/develop

Fix for window size
parents 25abbe5e ef056554
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