Commit faaec5e9 authored by Clément Stenac's avatar Clément Stenac

Fix for missing resizing in sout dialog.

Patch by Leo Spalteholz, thanks.
parent adb1e873
...@@ -29,11 +29,10 @@ ...@@ -29,11 +29,10 @@
SoutDialog::SoutDialog( intf_thread_t *_p_intf ) : QVLCFrame( _p_intf ) SoutDialog::SoutDialog( intf_thread_t *_p_intf ) : QVLCFrame( _p_intf )
{ {
setWindowTitle( qtr( "Stream output") ); //setWindowTitle( qtr( "Stream output") );
main = new QWidget( this );
/* UI stuff */ /* UI stuff */
ui.setupUi( main ); ui.setupUi( this );
#define ADD_VCODEC( name, fcc) ui.vCodec->addItem( name, QVariant( fcc ) ); #define ADD_VCODEC( name, fcc) ui.vCodec->addItem( name, QVariant( fcc ) );
ADD_VCODEC( "MPEG-1", "mp1v" ); ADD_VCODEC( "MPEG-1", "mp1v" );
ADD_VCODEC( "MPEG-2", "mp2v" ); ADD_VCODEC( "MPEG-2", "mp2v" );
......
...@@ -36,7 +36,6 @@ class SoutDialog : public QVLCFrame ...@@ -36,7 +36,6 @@ class SoutDialog : public QVLCFrame
Q_OBJECT; Q_OBJECT;
public: public:
SoutDialog( intf_thread_t * ); SoutDialog( intf_thread_t * );
QWidget *main;
private: private:
Ui::Sout ui; Ui::Sout ui;
public slots: public slots:
......
...@@ -5,12 +5,12 @@ ...@@ -5,12 +5,12 @@
<rect> <rect>
<x>0</x> <x>0</x>
<y>0</y> <y>0</y>
<width>630</width> <width>601</width>
<height>660</height> <height>611</height>
</rect> </rect>
</property> </property>
<property name="windowTitle" > <property name="windowTitle" >
<string>Form</string> <string>Stream Output</string>
</property> </property>
<layout class="QVBoxLayout" > <layout class="QVBoxLayout" >
<property name="margin" > <property name="margin" >
......
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