Browse Source

Fix header height (#3673)

QGC4.4
Don Gagne 9 years ago committed by GitHub
parent
commit
f0b7195e9e
  1. 2
      src/QmlControls/QGCView.qml

2
src/QmlControls/QGCView.qml

@ -283,7 +283,7 @@ FactPanel { @@ -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() {

Loading…
Cancel
Save