Commit d9297ab0 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf Committed by Christophe Mutricy

Fix the minimum size in qt-display-mode 1 to show all the cone.

(cherry picked from commit fce957a4)
Signed-off-by: default avatarChristophe Mutricy <xtophe@videolan.org>
parent 73bf184d
...@@ -181,7 +181,7 @@ QSize VideoWidget::sizeHint() const ...@@ -181,7 +181,7 @@ QSize VideoWidget::sizeHint() const
**********************************************************************/ **********************************************************************/
#define ICON_SIZE 128 #define ICON_SIZE 128
#define MAX_BG_SIZE 400 #define MAX_BG_SIZE 400
#define MIN_BG_SIZE 64 #define MIN_BG_SIZE 128
BackgroundWidget::BackgroundWidget( intf_thread_t *_p_i ) BackgroundWidget::BackgroundWidget( intf_thread_t *_p_i )
:QWidget( NULL ), p_intf( _p_i ) :QWidget( NULL ), p_intf( _p_i )
...@@ -191,7 +191,7 @@ BackgroundWidget::BackgroundWidget( intf_thread_t *_p_i ) ...@@ -191,7 +191,7 @@ BackgroundWidget::BackgroundWidget( intf_thread_t *_p_i )
/* A dark background */ /* A dark background */
setAutoFillBackground( true ); setAutoFillBackground( true );
plt = palette(); plt = palette();
plt.setColor( QPalette::Active, QPalette::Window , Qt::black ); plt.setColor( QPalette::Active, QPalette::Window , Qt::black );
plt.setColor( QPalette::Inactive, QPalette::Window , Qt::black ); plt.setColor( QPalette::Inactive, QPalette::Window , Qt::black );
setPalette( plt ); setPalette( plt );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment