From 93b50f44f5a8ee791bebbba87a0f19aa1bd6a0c4 Mon Sep 17 00:00:00 2001 From: Andrzej Kapolka Date: Tue, 4 Jun 2013 15:59:07 -0700 Subject: [PATCH] Add a reasonable minimum size for the URL field. --- interface/src/Application.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/interface/src/Application.cpp b/interface/src/Application.cpp index 8aba8a613a..6f898ecae7 100644 --- a/interface/src/Application.cpp +++ b/interface/src/Application.cpp @@ -1158,6 +1158,7 @@ void Application::editPreferences() { layout->addLayout(form, 1); QLineEdit* avatarURL = new QLineEdit(_settings->value("avatarURL").toString()); + avatarURL->setMinimumWidth(400); form->addRow("Avatar URL:", avatarURL); QDialogButtonBox* buttons = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel);