Ignore:
Timestamp:
Feb 21, 2014, 4:44:11 PM (11 years ago)
Author:
Silvan Scherrer
Message:

SMPlayer: update vendor to 0.8.6

File:
1 edited

Legend:

Unmodified
Added
Removed
  • smplayer/vendor/current/src/minigui.cpp

    r140 r154  
    101101        controlwidget = new EditableToolbar( this );
    102102        controlwidget->setObjectName("controlwidget");
     103        controlwidget->setLayoutDirection(Qt::LeftToRight);
    103104        controlwidget->setMovable(true);
    104105        controlwidget->setAllowedAreas(Qt::TopToolBarArea | Qt::BottomToolBarArea);
     
    127128        // Floating control
    128129        floating_control = new FloatingWidget(this);
     130        floating_control->setLayoutDirection(Qt::LeftToRight);
    129131
    130132#if USE_CONFIGURABLE_TOOLBARS
     
    247249                set->setValue( "pos", pos() );
    248250                set->setValue( "size", size() );
     251                set->setValue( "state", (int) windowState() );
    249252        }
    250253
     
    276279                move(p);
    277280                resize(s);
     281
     282                setWindowState( (Qt::WindowStates) set->value("state", 0).toInt() );
    278283
    279284                if (!DesktopInfo::isInsideScreen(this)) {
Note: See TracChangeset for help on using the changeset viewer.