changeset 299:fd6abd505f31

Font adjustment for pull/push confirm dialogs. Better, though the extra text will still be too small on OS/X
author Chris Cannam
date Tue, 22 Feb 2011 15:32:00 +0000
parents fd9dc5a457d8
children 5e4a10af7945
files mainwindow.cpp
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/mainwindow.cpp	Tue Feb 22 15:12:56 2011 +0000
+++ b/mainwindow.cpp	Tue Feb 22 15:32:00 2011 +0000
@@ -860,8 +860,8 @@
 {
     if (ConfirmCommentDialog::confirm
         (this, tr("Confirm pull"),
-         tr("Pull from remote repository?"),
-         tr("<qt>You are about to pull changes from the repository at <code>%1</code></qt>").arg(xmlEncode(m_remoteRepoPath)),
+         tr("<qt><h3>Pull from remote repository?</h3></qt>"),
+         tr("<qt><p>You are about to pull changes from the remote repository at <code>%1</code>.</p></qt>").arg(xmlEncode(m_remoteRepoPath)),
          tr("Pull"))) {
 
         QStringList params;
@@ -874,8 +874,8 @@
 {
     if (ConfirmCommentDialog::confirm
         (this, tr("Confirm push"),
-         tr("Push to remote repository?"),
-         tr("<qt>You are about to push your changes to the repository at <code>%1</code>").arg(xmlEncode(m_remoteRepoPath)),
+         tr("<qt><h3>Push to remote repository?</h3></qt>"),
+         tr("<qt><p>You are about to push your changes to the remote repository at <code>%1</code>.</p></qt>").arg(xmlEncode(m_remoteRepoPath)),
          tr("Push"))) {
 
         QStringList params;