From 966446342f2782771d84d902c4cec1f18904c6f1 Mon Sep 17 00:00:00 2001 From: twanvl Date: Sun, 24 Dec 2006 13:52:49 +0000 Subject: [PATCH] dummy text git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@163 0fc631ac-6414-0410-93d0-97cfa31319b6 --- src/gui/set/keywords_panel.cpp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/gui/set/keywords_panel.cpp b/src/gui/set/keywords_panel.cpp index ee2e1a38..acb2a06b 100644 --- a/src/gui/set/keywords_panel.cpp +++ b/src/gui/set/keywords_panel.cpp @@ -31,10 +31,11 @@ class KeywordList : public wxListView { KeywordsPanel::KeywordsPanel(Window* parent, int id) : SetWindowPanel(parent, id) { - /*wxSizer* s = new wxBoxSizer(wxHORIZONTAL); - wxSizer* s2 = new wxBoxSizer(wxVERTICAL); + wxSizer* s = new wxBoxSizer(wxHORIZONTAL); + s->Add(new wxStaticText(this, wxID_ANY, _("Sorry, no keywords for now"),wxDefaultPosition,wxDefaultSize,wxALIGN_CENTER), 1, wxALIGN_CENTER); // TODO: Remove + /* wxSizer* s2 = new wxBoxSizer(wxVERTICAL); s2->Add(list_active, 1, wxEXPAND); - s2->Add(list_inactive, 1, wxEXPAND); + s2->Add(list_inactive, 1, wxEXPAND);*/ s->SetSizeHints(this); - SetSizer(s);*/ + SetSizer(s); }