# HG changeset patch
# User Chris Cannam
# Date 1300271216 0
# Node ID 5bf78b23eb1044cfb807002a8d9b7bf5ee56d73e
# Parent 8b244f3b311184b375d558a107c50cd9b26a7397
Backed out changeset 8b244f3b3111. It just feels wrong in normal use, I don't think the pedagogical advantage is quite enough
diff -r 8b244f3b3111 -r 5bf78b23eb10 mainwindow.cpp
--- a/mainwindow.cpp Tue Mar 15 11:45:53 2011 +0000
+++ b/mainwindow.cpp Wed Mar 16 10:26:56 2011 +0000
@@ -1055,6 +1055,11 @@
tr("What would you like to open?"),
this);
+ d->addChoice("remote",
+ tr("
Remote repository"),
+ tr("Open a remote Mercurial repository, by cloning from its URL into a local folder."),
+ MultiChoiceDialog::UrlToDirectoryArg);
+
d->addChoice("local",
tr("
Local repository"),
tr("Open an existing local Mercurial repository."),
@@ -1065,11 +1070,6 @@
tr("Open a local folder, by creating a Mercurial repository in it."),
MultiChoiceDialog::DirectoryArg);
- d->addChoice("remote",
- tr("
Remote repository"),
- tr("Open a remote Mercurial repository, by cloning from its URL into a local folder."),
- MultiChoiceDialog::UrlToDirectoryArg);
-
QSettings settings;
settings.beginGroup("General");
QString lastChoice = settings.value("lastopentype", "local").toString();