diff options
author | Ira Rice <irarice@gmail.com> | 2009-01-20 13:54:14 -0700 |
---|---|---|
committer | Ira Rice <irarice@gmail.com> | 2009-01-20 13:54:14 -0700 |
commit | c75f6978e780a4cbe7e4103b7a3187c2ddf75c33 (patch) | |
tree | 2ac79c671aa5cbf7b2e559041b2672766d7c0dfb /src/gui | |
parent | 55c3448f18d7e93608de4409383f50518b79f8f8 (diff) | |
download | mana-c75f6978e780a4cbe7e4103b7a3187c2ddf75c33.tar.gz mana-c75f6978e780a4cbe7e4103b7a3187c2ddf75c33.tar.bz2 mana-c75f6978e780a4cbe7e4103b7a3187c2ddf75c33.tar.xz mana-c75f6978e780a4cbe7e4103b7a3187c2ddf75c33.zip |
Fixed window transparency in NPC text (because the browser box was told
to be opaque, the text area in the NPC window wasn't transparent, and
was rather noticeable using Aethyra's color scheme, cause it shows up
as white)
Signed-off-by: Ira Rice <irarice@gmail.com>
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/npc_text.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/npc_text.cpp b/src/gui/npc_text.cpp index 2ba95796..898b9afe 100644 --- a/src/gui/npc_text.cpp +++ b/src/gui/npc_text.cpp @@ -43,7 +43,7 @@ NpcTextDialog::NpcTextDialog(): setDefaultSize(0, 0, 260, 175); mBrowserBox = new BrowserBox(BrowserBox::AUTO_WRAP); - mBrowserBox->setOpaque(true); + mBrowserBox->setOpaque(false); scrollArea = new ScrollArea(mBrowserBox); okButton = new Button(_("OK"), "ok", this); |