~faenil/telegram-app/performance_and_ui_improvements

« back to all changes in this revision

Viewing changes to telegram/app/qml/InstallStickerDialog.qml

  • Committer: Michael Zanetti
  • Date: 2016-03-01 22:52:22 UTC
  • mfrom: (155.1.5 listitem)
  • Revision ID: michael.zanetti@canonical.com-20160301225222-3qtwg420eyfb9r9n
mergedĀ lp:~mzanetti/telegram-app/listitem

Show diffs side-by-side

added added

removed removed

Lines of Context:
65
65
 
66
66
    UC.Button {
67
67
        text: i18n.tr("Install")
68
 
        color: UT.UbuntuColors.blue
 
68
        color: UC.UbuntuColors.blue
69
69
        onClicked: {
70
70
            telegram.installStickerSet(root.stickerSet)
71
71
            PopupUtils.close(root)
73
73
    }
74
74
    UC.Button {
75
75
        text: i18n.tr("Close")
76
 
        color: UT.UbuntuColors.orange
 
76
        color: UC.UbuntuColors.orange
77
77
        onClicked: PopupUtils.close(root)
78
78
    }
79
79
}