~ahayzen/ubuntu-printing-app/rearrange-folders

« back to all changes in this revision

Viewing changes to ubuntu-printing-app/components/BaseRowLayout.qml

  • Committer: Andrew Hayzen
  • Date: 2017-03-15 11:49:25 UTC
  • mfrom: (23.1.63 additional-fixes)
  • Revision ID: ahayzen@gmail.com-20170315114925-o21g3wwwfivap3yz
* Rebase on lp:~ahayzen/ubuntu-printing-app/additional-fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright 2017 Canonical Ltd.
 
3
 *
 
4
 * This file is part of ubuntu-printing-app.
 
5
 *
 
6
 * ubuntu-printing-app is free software; you can redistribute it and/or modify
 
7
 * it under the terms of the GNU General Public License as published by
 
8
 * the Free Software Foundation; version 3.
 
9
 *
 
10
 * ubuntu-printing-app is distributed in the hope that it will be useful,
 
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
 * GNU General Public License for more details.
 
14
 *
 
15
 * You should have received a copy of the GNU General Public License
 
16
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
17
 *
 
18
 * Authored-by: Andrew Hayzen <andrew.hayzen@canonical.com>
 
19
 */
 
20
import QtQuick 2.4
 
21
import QtQuick.Layouts 1.1
 
22
 
 
23
RowLayout {
 
24
    anchors {
 
25
        horizontalCenter: parent.horizontalCenter
 
26
    }
 
27
    Layout.maximumWidth: Math.min(units.gu(60), parent.width - units.gu(4))
 
28
}