From 65b3b80af615704edc5b692ef368f15d48d1d971 Mon Sep 17 00:00:00 2001 From: twanvl Date: Fri, 21 Jan 2011 11:42:39 +0000 Subject: [PATCH] added some margins to "collapse notes" label git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@1625 0fc631ac-6414-0410-93d0-97cfa31319b6 --- src/gui/set/cards_panel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/set/cards_panel.cpp b/src/gui/set/cards_panel.cpp index 53357c80..bb23cc85 100644 --- a/src/gui/set/cards_panel.cpp +++ b/src/gui/set/cards_panel.cpp @@ -53,7 +53,7 @@ CardsPanel::CardsPanel(Window* parent, int id) // init sizer for notes panel wxSizer* sn = new wxBoxSizer(wxVERTICAL); wxSizer* sc = new wxBoxSizer(wxHORIZONTAL); - sc->Add(new wxStaticText(nodes_panel, wxID_ANY, _LABEL_("card notes")), 1, wxEXPAND); + sc->Add(new wxStaticText(nodes_panel, wxID_ANY, _LABEL_("card notes")), 1, wxEXPAND | wxLEFT, 2); sc->Add(collapse_notes, 0, wxALIGN_CENTER | wxRIGHT, 2); sn->Add(sc, 0, wxEXPAND, 2); sn->Add(notes, 1, wxEXPAND | wxTOP, 2);