# HG changeset patch # User Chris Cannam # Date 1298389907 0 # Node ID 5e4a10af7945d7a10bfe9d3e220f141269af054a # Parent fd6abd505f3116c27e8b5d70eb38d5408d1affef Minor layout & text changes diff -r fd6abd505f31 -r 5e4a10af7945 incomingdialog.cpp --- a/incomingdialog.cpp Tue Feb 22 15:32:00 2011 +0000 +++ b/incomingdialog.cpp Tue Feb 22 15:51:47 2011 +0000 @@ -81,6 +81,9 @@ QDialogButtonBox *bb = new QDialogButtonBox(QDialogButtonBox::Ok); connect(bb, SIGNAL(accepted()), this, SLOT(accept())); layout->addWidget(bb, 2, 0, 1, 2); + + layout->setColumnStretch(1, 20); + setMinimumWidth(400); } diff -r fd6abd505f31 -r 5e4a10af7945 mainwindow.cpp --- a/mainwindow.cpp Tue Feb 22 15:32:00 2011 +0000 +++ b/mainwindow.cpp Tue Feb 22 15:51:47 2011 +0000 @@ -1594,6 +1594,7 @@ int n = extractChangeCount(output); if (n > 0) { head = tr("Pushed %n changeset(s)", "", n); + report = tr("Successfully pushed to the remote repository at %1.").arg(xmlEncode(m_remoteRepoPath)); } else if (n == 0) { head = tr("No changes to push"); report = tr("The remote repository already contains all changes that have been committed locally.");