Skip to content

Commit

Permalink
Minor tweaks for 1.5 release
Browse files Browse the repository at this point in the history
  • Loading branch information
penk committed Mar 8, 2015
1 parent 2ef0701 commit 34e8c43
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 17 deletions.
13 changes: 4 additions & 9 deletions platform/ios/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1.5</string>
<string>1.5.1</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NOTE</key>
<string>This file was generated by Qt/QMake.</string>
<key>UIStatusBarHidden</key>
Expand All @@ -44,13 +46,6 @@
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UIViewControllerBasedStatusBarAppearance</key>
<false/>
<key>UIRequiredDeviceCapabilities</key>
<array>
<string>still-camera</string>
<string>auto-focus-camera</string>
<string>front-facing-camera</string>
<string>video-camera</string>
</array>
<false/>
</dict>
</plist>
16 changes: 8 additions & 8 deletions qml/NaviBar.qml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ Rectangle {
Rectangle {
id: repeater
border.color: "#007edf"
width: 270 * scaleRatio
width: 240 * scaleRatio
height: 29 * scaleRatio
anchors.centerIn: parent
radius: 5
smooth: true
visible: false
Row {
Rectangle {
width: 90 *scaleRatio ; height: 29 * scaleRatio
width: 80 *scaleRatio ; height: 29 * scaleRatio
color: splitState == 'editor' ? "#007edf" : "transparent"
Text {
text: "Editor"
Expand All @@ -32,7 +32,7 @@ Rectangle {
}
}
Rectangle {
width: 90 * scaleRatio; height: 29 * scaleRatio
width: 80 * scaleRatio; height: 29 * scaleRatio
border.width: 1
border.color: "#007edf"
color: splitState == 'splitted' ? "#007edf" : "transparent"
Expand All @@ -44,7 +44,7 @@ Rectangle {
}
}
Rectangle {
width: 90 * scaleRatio; height: 29 * scaleRatio
width: 80 * scaleRatio; height: 29 * scaleRatio
color: splitState == 'viewer' ? "#007edf" : "transparent"
Text {
text: "Viewer"
Expand Down Expand Up @@ -74,17 +74,17 @@ Rectangle {
anchors.centerIn: parent
visible: (parent.state === 'view')
MouseArea {
width: 90 * scaleRatio
width: 80 * scaleRatio
height: 29 * scaleRatio
onPressed: splitState = 'editor'
}
MouseArea {
width: 90 * scaleRatio
width: 80 * scaleRatio
height: 29 * scaleRatio
onPressed: splitState = 'splitted'
}
MouseArea {
width: 90 * scaleRatio
width: 80 * scaleRatio
height: 29 * scaleRatio
onPressed: splitState = 'viewer'
}
Expand Down Expand Up @@ -113,7 +113,7 @@ Rectangle {
Row {
anchors.centerIn: parent
visible: (parent.state === 'selection')
spacing: 30 * scaleRatio
spacing: 20 * scaleRatio
Text {
visible: (editor.selectionStart !== editor.selectionEnd)
color: "#007edf"
Expand Down

0 comments on commit 34e8c43

Please sign in to comment.