From 749c596cbfe2f1b73b25610c0ad85acee67657cf Mon Sep 17 00:00:00 2001 From: Magne Sjaastad Date: Mon, 7 Sep 2015 12:27:00 +0200 Subject: [PATCH] (#416) Improved UI text for unavailable views --- ApplicationCode/Commands/RicLinkVisibleViewsFeature.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ApplicationCode/Commands/RicLinkVisibleViewsFeature.cpp b/ApplicationCode/Commands/RicLinkVisibleViewsFeature.cpp index 24edf1dfb9..2d48cf0c0f 100644 --- a/ApplicationCode/Commands/RicLinkVisibleViewsFeature.cpp +++ b/ApplicationCode/Commands/RicLinkVisibleViewsFeature.cpp @@ -65,7 +65,7 @@ void RicLinkVisibleViewsFeature::onActionTriggered(bool isChecked) findNotLinkedVisibleViews(views); if (views.size() < 2) { - QMessageBox::warning(RiuMainWindow::instance(), "Link Visible Views", "Less than two views available for linking. Please open at least two not linked views before creating a new link group."); + QMessageBox::warning(RiuMainWindow::instance(), "Link Visible Views", "Less than two views are available for linking. Please open at least two not linked views before creating a new linked views group."); return; } @@ -165,7 +165,8 @@ void RicLinkVisibleViewsFeature::findNotLinkedVisibleViews(std::vector if (anyAlreadyLinkedViews) { - QMessageBox::warning(RiuMainWindow::instance(), "Link Visible Views", "Detected one or more visible view(s) already part of a Linked View Group.\nThese views were removed from the list of visible views."); + QMessageBox::warning(RiuMainWindow::instance(), "Link Visible Views", + "Detected one or more visible view(s) already part of a Linked View Group.\nThese views were removed from the list views to be linked."); } }