From 08914410f6355d27a65f2551fa9678d6af804503 Mon Sep 17 00:00:00 2001 From: twanvl Date: Fri, 7 Jan 2011 20:02:29 +0000 Subject: [PATCH] Removed wxTB_NODIVIDER style again git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@1589 0fc631ac-6414-0410-93d0-97cfa31319b6 --- src/gui/set/window.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/set/window.cpp b/src/gui/set/window.cpp index 5c56c8a6..b9abff7a 100644 --- a/src/gui/set/window.cpp +++ b/src/gui/set/window.cpp @@ -120,7 +120,7 @@ SetWindow::SetWindow(Window* parent, const SetP& set) SetStatusText(_HELP_("welcome")); // tool bar - wxToolBar* tb = CreateToolBar(wxTB_FLAT | wxNO_BORDER | wxTB_HORIZONTAL | wxTB_NODIVIDER); + wxToolBar* tb = CreateToolBar(wxTB_FLAT | wxNO_BORDER | wxTB_HORIZONTAL); tb->SetToolBitmapSize(wxSize(18,18)); tb->AddTool(ID_FILE_NEW, _(""), load_resource_tool_image(_("new")), wxNullBitmap, wxITEM_NORMAL, _TOOLTIP_("new set"), _HELP_("new set")); tb->AddTool(ID_FILE_OPEN, _(""), load_resource_tool_image(_("open")), wxNullBitmap, wxITEM_NORMAL, _TOOLTIP_("open set"), _HELP_("open set"));