Merge lp:~costales/unav/0.64-window-size-never-as-screen into lp:unav

Proposed by costales
Status: Merged
Merged at revision: 140
Proposed branch: lp:~costales/unav/0.64-window-size-never-as-screen
Merge into: lp:unav
Diff against target: 16 lines (+4/-2)
1 file modified
qml/Main.qml (+4/-2)
To merge this branch: bzr merge lp:~costales/unav/0.64-window-size-never-as-screen
Reviewer Review Type Date Requested Status
uNav developers Pending
Review via email: mp+312982@code.launchpad.net

Description of the change

Window never bigger than screen.

To post a comment you must log in.
137. By costales

Min to 45x45

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'qml/Main.qml'
2--- qml/Main.qml 2016-09-26 19:42:17 +0000
3+++ qml/Main.qml 2016-12-11 16:00:50 +0000
4@@ -39,8 +39,10 @@
5 title: "uNav"
6 width: units.gu(150)
7 height: units.gu(100)
8- minimumWidth: units.gu(60)
9- minimumHeight: units.gu(80)
10+ minimumWidth: units.gu(45)
11+ minimumHeight: units.gu(45)
12+ maximumWidth: Screen.width
13+ maximumHeight: Screen.height
14
15 MainView {
16 id: navApp

Subscribers

People subscribed via source and target branches