summaryrefslogtreecommitdiff
path: root/src/dialogues/ConfirmPrompt.cpp
diff options
context:
space:
mode:
authorSimon Robertshaw <simon@hardwired.org.uk>2012-07-03 12:58:59 (GMT)
committer Simon Robertshaw <simon@hardwired.org.uk>2012-07-03 12:58:59 (GMT)
commitc996d01228f37f3f59b7157deb6e4c695a9654df (patch)
treef5b42e4fb8b4c2e7c41b20de19a6f588cc6e7ce4 /src/dialogues/ConfirmPrompt.cpp
parente5f96cd3c97833bea60e562e810cc9c66e018172 (diff)
downloadpowder-c996d01228f37f3f59b7157deb6e4c695a9654df.zip
powder-c996d01228f37f3f59b7157deb6e4c695a9654df.tar.gz
Make update notification a little better - correct colour. Correct multiline label for Confirm prompt
Diffstat (limited to 'src/dialogues/ConfirmPrompt.cpp')
-rw-r--r--src/dialogues/ConfirmPrompt.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/dialogues/ConfirmPrompt.cpp b/src/dialogues/ConfirmPrompt.cpp
index 30b94a8..93ef06a 100644
--- a/src/dialogues/ConfirmPrompt.cpp
+++ b/src/dialogues/ConfirmPrompt.cpp
@@ -23,6 +23,7 @@ ConfirmPrompt::ConfirmPrompt(std::string title, std::string message, ConfirmDial
ui::Label * messageLabel = new ui::Label(ui::Point(4, 25), ui::Point(Size.X-8, -1), message);
+ messageLabel->SetMultiline(true);
messageLabel->Appearance.HorizontalAlign = ui::Appearance::AlignLeft;
messageLabel->Appearance.VerticalAlign = ui::Appearance::AlignTop;
AddComponent(messageLabel);