Ignore:
Timestamp:
Feb 21, 2014, 5:26:03 PM (11 years ago)
Author:
Silvan Scherrer
Message:

SMPlayer: update trunk to 0.8.6

Location:
smplayer/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • smplayer/trunk

  • smplayer/trunk/src/defaultgui.cpp

    r142 r156  
    282282        controlwidget_mini = new EditableToolbar( this );
    283283        controlwidget_mini->setObjectName("controlwidget_mini");
     284        controlwidget_mini->setLayoutDirection(Qt::LeftToRight);
    284285        //controlwidget_mini->setResizeEnabled(false);
    285286        controlwidget_mini->setMovable(false);
     
    318319        controlwidget = new EditableToolbar( this );
    319320        controlwidget->setObjectName("controlwidget");
     321        controlwidget->setLayoutDirection(Qt::LeftToRight);
    320322        //controlwidget->setResizeEnabled(false);
    321323        controlwidget->setMovable(false);
     
    380382        // Floating control
    381383        floating_control = new FloatingWidget(this);
     384        floating_control->setLayoutDirection(Qt::LeftToRight);
    382385
    383386#if USE_CONFIGURABLE_TOOLBARS
     
    729732                set->setValue( "pos", pos() );
    730733                set->setValue( "size", size() );
     734                set->setValue( "state", (int) windowState() );
    731735        }
    732736
     
    772776                resize(s);
    773777
     778                setWindowState( (Qt::WindowStates) set->value("state", 0).toInt() );
     779
    774780                if (!DesktopInfo::isInsideScreen(this)) {
    775781                        move(0,0);
Note: See TracChangeset for help on using the changeset viewer.