Merge lp:~mihirsoni/ubuntu-calculator-app/1211262 into lp:~ubuntu-calculator-dev/ubuntu-calculator-app/old_trunk

Proposed by Mihir Soni
Status: Merged
Merge reported by: Mihir Soni
Merged at revision: not available
Proposed branch: lp:~mihirsoni/ubuntu-calculator-app/1211262
Merge into: lp:~ubuntu-calculator-dev/ubuntu-calculator-app/old_trunk
Diff against target: 12 lines (+1/-1)
1 file modified
Simple/CalcLabel.qml (+1/-1)
To merge this branch: bzr merge lp:~mihirsoni/ubuntu-calculator-app/1211262
Reviewer Review Type Date Requested Status
Ubuntu Phone Apps Jenkins Bot continuous-integration Approve
Mihir Soni Needs Fixing
David Planella Approve
Review via email: mp+180071@code.launchpad.net

Commit message

Set 0 before starting the new calculation

Description of the change

By default "0" for every new calculation.

To post a comment you must log in.
Revision history for this message
David Planella (dpm) wrote :

An easy fix and works well, good work!

review: Approve
Revision history for this message
Mihir Soni (mihirsoni) :
review: Needs Fixing
Revision history for this message
Ubuntu Phone Apps Jenkins Bot (ubuntu-phone-apps-jenkins-bot) :
review: Approve (continuous-integration)

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'Simple/CalcLabel.qml'
2--- Simple/CalcLabel.qml 2013-08-09 20:29:13 +0000
3+++ Simple/CalcLabel.qml 2013-08-14 09:18:01 +0000
4@@ -121,7 +121,7 @@
5 font.pixelSize: numbersHeight
6 fontSizeMode: Text.Fit
7 horizontalAlignment: Text.AlignRight
8- text: root.numbers
9+ text: isLast && !pencilVisible ? "0" : root.numbers
10 font.family: "Ubuntu"
11 }
12 }

Subscribers

People subscribed via source and target branches