Skip to content

Commit

Permalink
Refactor #22
Browse files Browse the repository at this point in the history
  • Loading branch information
DionysusBenstein committed Jul 1, 2018
1 parent f5d0f06 commit facf462
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion AppBar.qml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Rectangle {

Text {
id: headerText
text: "Counter v2.4.2-beta1"
text: "Counter v2.4.3"
font.family: robotoMediumFont.name
font.pointSize: 15
color: "white"
Expand Down
2 changes: 1 addition & 1 deletion Counter.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ class Counter : public QObject
QString alph;
};

#endif // COUNTER_H
#endif //COUNTER_H
2 changes: 1 addition & 1 deletion Counter.pro.user
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE QtCreatorProject>
<!-- Written by QtCreator 4.6.83, 2018-06-30T07:45:40. -->
<!-- Written by QtCreator 4.6.83, 2018-06-30T21:48:16. -->
<qtcreator>
<data>
<variable>EnvironmentId</variable>
Expand Down
4 changes: 1 addition & 3 deletions TitleBar.qml
Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,7 @@ Rectangle {
hoverEnabled: true
onEntered: parent.color = lightColor
onExited: parent.color = darkColor
onClicked: {
isMaximize() ? mainWindow.showNormal() : mainWindow.showMaximized()
}
onClicked: isMaximize() ? mainWindow.showNormal() : mainWindow.showMaximized()
}
}

Expand Down
3 changes: 2 additions & 1 deletion main.qml
Original file line number Diff line number Diff line change
Expand Up @@ -333,8 +333,9 @@ ApplicationWindow {
input.text.length.toString()
}
}

font.pixelSize: 40
onTextChanged: {
onTextChanged: {
textOpacityAnim.running = true
textScaleAnim.running = true
}
Expand Down

0 comments on commit facf462

Please sign in to comment.