Commit 339f955e authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt: properly show the dialog buttons on Win32

Close #13648
parent bec1bd4d
...@@ -152,7 +152,10 @@ class QVLCDialog : public QDialog ...@@ -152,7 +152,10 @@ class QVLCDialog : public QDialog
public: public:
QVLCDialog( QWidget* parent, intf_thread_t *_p_intf ) : QVLCDialog( QWidget* parent, intf_thread_t *_p_intf ) :
QDialog( parent ), p_intf( _p_intf ) QDialog( parent ), p_intf( _p_intf )
{} {
setWindowFlags( Qt::Dialog|Qt::WindowMinMaxButtonsHint|
Qt::WindowSystemMenuHint|Qt::WindowCloseButtonHint );
}
virtual ~QVLCDialog() {}; virtual ~QVLCDialog() {};
void toggleVisible() void toggleVisible()
{ {
......
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