From f0b7195e9e10267bef440a425274e8b93c40a6fe Mon Sep 17 00:00:00 2001 From: Don Gagne Date: Mon, 27 Jun 2016 19:29:14 -0700 Subject: [PATCH] Fix header height (#3673) --- src/QmlControls/QGCView.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/QmlControls/QGCView.qml b/src/QmlControls/QGCView.qml index d9dce4102..4c54ec9b1 100644 --- a/src/QmlControls/QGCView.qml +++ b/src/QmlControls/QGCView.qml @@ -283,7 +283,7 @@ FactPanel { Rectangle { id: __header width: parent.width - height: __acceptButton.height + height: __acceptButton.visible ? __acceptButton.height : __rejectButton.height color: __qgcPal.windowShade function __hidePanel() { -- 2.22.0