diff options
Diffstat (limited to 'src/gui/questswindow.cpp')
-rw-r--r-- | src/gui/questswindow.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gui/questswindow.cpp b/src/gui/questswindow.cpp index fdda10562..5ffdf45c5 100644 --- a/src/gui/questswindow.cpp +++ b/src/gui/questswindow.cpp @@ -31,6 +31,7 @@ #include "gui/widgets/layouthelper.h" #include "gui/widgets/extendedlistbox.h" #include "gui/widgets/extendednamesmodel.h" +#include "gui/widgets/itemlinkhandler.h" #include "gui/widgets/scrollarea.h" #include "gui/widgets/textfield.h" @@ -87,6 +88,7 @@ QuestsWindow::QuestsWindow() : mQuestsListBox(new ExtendedListBox(mQuestsModel)), mQuestScrollArea(new ScrollArea(mQuestsListBox, getOptionBool("showlistbackground"))), + mItemLinkHandler(new ItemLinkHandler), mText(new BrowserBox(BrowserBox::AUTO_WRAP)), mTextScrollArea(new ScrollArea(mText, getOptionBool("showtextbackground"))), @@ -109,6 +111,7 @@ QuestsWindow::QuestsWindow() : mQuestScrollArea->setHorizontalScrollPolicy(gcn::ScrollArea::SHOW_NEVER); mText->setOpaque(false); + mText->setLinkHandler(mItemLinkHandler); mTextScrollArea->setHorizontalScrollPolicy(gcn::ScrollArea::SHOW_NEVER); mQuestsListBox->setWidth(500); if (gui->getNpcFont()->getHeight() < 20) |