Skip to content

Commit 8152604

Browse files
committed
Change image
1 parent fa25454 commit 8152604

File tree

5 files changed

+29
-1
lines changed

5 files changed

+29
-1
lines changed
Lines changed: 24 additions & 0 deletions
Loading

app/images/images.qrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,6 @@
3535
<file>SignIn.svg</file>
3636
<file>NoWorkspace.svg</file>
3737
<file>BlueInfo.svg</file>
38+
<file>ReachedMonthlyContributorLimit.svg</file>
3839
</qresource>
3940
</RCC>

app/mmstyle.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,7 @@ class MMStyle: public QObject
198198
Q_PROPERTY( QUrl acceptInvitationImage READ acceptInvitationImage CONSTANT )
199199
Q_PROPERTY( QUrl acceptInvitationLogoImage READ acceptInvitationLogoImage CONSTANT )
200200
Q_PROPERTY( QUrl reachedDataLimitImage READ reachedDataLimitImage CONSTANT )
201+
Q_PROPERTY( QUrl reachedMonthlyContributorLimitImage READ reachedMonthlyContributorLimitImage CONSTANT )
201202
Q_PROPERTY( QUrl uploadImage READ uploadImage CONSTANT )
202203
Q_PROPERTY( QUrl noMapThemesImage READ noMapThemesImage CONSTANT )
203204
Q_PROPERTY( QUrl syncFailedImage READ syncFailedImage CONSTANT )
@@ -496,6 +497,7 @@ class MMStyle: public QObject
496497
QUrl noPermissionsImage() {return QUrl( "qrc:/images/NoPermissions.svg" );}
497498
QUrl signInImage() {return QUrl( "qrc:/images/SignIn.svg" );}
498499
QUrl reachedDataLimitImage() {return QUrl( "qrc:/images/ReachedDataLimit.svg" );}
500+
QUrl reachedMonthlyContributorLimitImage() {return QUrl( "qrc:/images/ReachedMonthlyContributorLimit.svg" );}
499501
QUrl warnLogoImage() {return QUrl( "qrc:/images/WarnLogoImage.svg" );}
500502
QUrl mapPinImage() {return QUrl( "qrc:/images/MapPin.svg" );}
501503
QUrl positionTrackingRunningImage() {return QUrl( "qrc:/images/PositionTrackingRunning.svg" );}

app/qml/dialogs/MMMonthlyContributorsLimitDialog.qml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ MMComponents.MMDrawerDialog {
2020
signal manageAccountClicked()
2121

2222
title: qsTr("You've reached the maximum number of active monthly contributors for your current subscription.")
23-
imageSource: __style.reachedDataLimitImage
23+
imageSource: __style.reachedMonthlyContributorLimitImage
2424

2525
description: qsTr( "Upgrade your subscription or wait until next month for the limit to reset." )
2626

gallery/qml/pages/ImagesPage.qml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ ScrollView {
4141
Column { Image { source: __style.externalGpsGreenImage } Text { text: "externalGpsGreenImage" } }
4242
Column { Image { source: __style.externalGpsRedImage } Text { text: "externalGpsRedImage" } }
4343
Column { Image { source: __style.reachedDataLimitImage } Text { text: "reachedDataLimitImage" } }
44+
Column { Image { source: __style.reachedMonthlyContributorLimitImage } Text { text: "reachedMonthlyContributorLimitImage" } }
4445
Column { Image { source: __style.positiveMMSymbolImage } Text { text: "positiveMMSymbolImage" } }
4546
Column { Image { source: __style.negativeMMSymbolImage } Text { text: "negativeMMSymbolImage" } }
4647
Column { Image { source: __style.closeAccountImage } Text { text: "closeAccountImage" } }

0 commit comments

Comments
 (0)