~mzanetti/unity8/buttons-in-panel

« back to all changes in this revision

Viewing changes to qml/Shell.qml

  • Committer: Michael Zanetti
  • Date: 2014-11-24 13:15:52 UTC
  • Revision ID: michael.zanetti@canonical.com-20141124131552-ppw71ku5nm4z00aj
shrink indicators area if buttons are visible

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
    id: shell
46
46
 
47
47
    // this is only here to select the width / height of the window if not running fullscreen
48
 
    property bool tablet: true
 
48
    property bool tablet: false
49
49
    width: tablet ? units.gu(160) : applicationArguments.hasGeometry() ? applicationArguments.width() : units.gu(40)
50
50
    height: tablet ? units.gu(100) : applicationArguments.hasGeometry() ? applicationArguments.height() : units.gu(71)
51
51