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