Skip to content
Snippets Groups Projects
Commit be685f21 authored by Ludovic Hussonnois's avatar Ludovic Hussonnois
Browse files

ENH: Fix zoom level and status bar display.

parent ea02df9a
No related branches found
No related tags found
No related merge requests found
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
<widget class="QLabel" name="projectionScaleLabel"> <widget class="QLabel" name="projectionScaleLabel">
<property name="maximumSize"> <property name="maximumSize">
<size> <size>
<width>100</width> <width>16777215</width>
<height>20</height> <height>20</height>
</size> </size>
</property> </property>
......
...@@ -70,6 +70,9 @@ StatusBarWidget ...@@ -70,6 +70,9 @@ StatusBarWidget
m_UI( new mvd::Ui::StatusBarWidget() ) m_UI( new mvd::Ui::StatusBarWidget() )
{ {
m_UI->setupUi( this ); m_UI->setupUi( this );
// mantis-1385 hide scaleLineEdit
m_UI->label_4->hide();
m_UI->scaleLineEdit->hide();
} }
/*****************************************************************************/ /*****************************************************************************/
...@@ -159,10 +162,6 @@ StatusBarWidget ...@@ -159,10 +162,6 @@ StatusBarWidget
assert( m_UI->pixelIndexLineEdit!=NULL ); assert( m_UI->pixelIndexLineEdit!=NULL );
m_UI->pixelRadiometryLabel->setText( text ); m_UI->pixelRadiometryLabel->setText( text );
// mantis-1385 hide scaleLineEdit
m_UI->label_4->hide();
m_UI->scaleLineEdit->hide();
} }
/*****************************************************************************/ /*****************************************************************************/
......
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