~cimi/unity8/card_touchdown

« back to all changes in this revision

Viewing changes to tests/plugins/Dash/cardcreator/2.res

  • Committer: Andrea Cimitan
  • Date: 2014-06-24 09:54:02 UTC
  • mfrom: (917.6.36 unity8)
  • Revision ID: andrea.cimitan@gmail.com-20140624095402-gaw0o3l8y9fmoqhz
[ Michał Sawicz ]
* Make so that fixedArtShapeSize actually fixes artShapeSize.
[ Albert Astals ]
* Add VerticalJournal integration to Dash/scopes/QML (LP: #1326467)
* Make so that fixedArtShapeSize actually fixes artShapeSize.
[ Mirco Müller ]
* Added the frontend-part of sound-hint support for notifications with
  updated QML-tests.
* New rebuild forced
[ Albert Astals ]
* Departments support (LP: #1320847)
[ Pawel Stolowski ]
* Extend the hack for click scope categories with the upcoming 'store'
  category: single-tap on results from the 'store' category should
  activate them, instead of requesting a preview. (LP: #1326292)
[ Albert Astals ]
* Drop the " Preview" suffix from Preview title As requested in
  https://bugs.launchpad.net/unity8/+bug/1316671 (LP: #1316671)
[ Michael Terry ]
* Revert split greeter for now.  We will bring it back as an option
  for Desktop, but use a big hammer revert right now to get Touch back
  in shape.
[ CI bot ]
* Fix build problems. Reviewed by: Michael Terry (LP: #1328850)
[ Michał Sawicz ]
* Make lockscreen buttons translatable.
[ Albert Astals ]
* Correctly mark these functions as overrides
* Remove connections to non existant signal
* Better test name
* Improvements for headerless categories LVPWH: No section name -> no
  header LVPWH: New hasSectionHeader context property for delegates
  GSV: Add topMargin if no hasSectionHeader (LP: #1326415)
* Make tryVerticalJournal, tryHorizontalJournal and tryOrganicGrid
  work again
[ Michael Zanetti ]
* Don't crash when we get an invalid app from ApplicationManager (LP:
  #1309162)
[ Andrea Cimitan ]
* Workaround for lp1324159 (LP: #1322233, #1324159)
[ CI bot ]
* Resync trunk
[ Florian Boucault ]
* Application startup: changed splash rectangle to be black instead of
  white and added a neat little animation. (LP: #1124265)

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
                    }
47
47
                }
48
48
readonly property size artShapeSize: Qt.size(-1, -1);
49
 
readonly property int headerHeight: row.height + row.margins * 2;
50
 
Row {
51
 
                    id: row;
52
 
                    objectName: "outerRow";
53
 
                    property real margins: units.gu(1);
54
 
                    spacing: margins;
55
 
                    anchors { top: parent.top;
 
49
readonly property int headerHeight: row.height;
 
50
Row { 
 
51
                    id: row; 
 
52
                    objectName: "outerRow"; 
 
53
                    property real margins: units.gu(1); 
 
54
                    spacing: margins; 
 
55
                    height: root.fixedHeaderHeight != -1 ? root.fixedHeaderHeight : implicitHeight; 
 
56
                    anchors { top: parent.top; 
56
57
                                     topMargin: units.gu(1);
57
58
                    left: parent.left;
58
59
}