summaryrefslogtreecommitdiff
path: root/src/wx/editable_list.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-11-06 21:05:57 +0000
committerCarl Hetherington <cth@carlh.net>2013-11-06 21:05:57 +0000
commitc2aa1e3c11f9d13286c7a7260bcedce7e3502f00 (patch)
tree015c19f9cf412375d27ef2f8f7a7255c85fb909b /src/wx/editable_list.h
parent8cbf628ec5cc8422d9bf01d7482b1b7fb7d02b69 (diff)
GUI layout tweaks.
Diffstat (limited to 'src/wx/editable_list.h')
-rw-r--r--src/wx/editable_list.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/wx/editable_list.h b/src/wx/editable_list.h
index 731434186..20d180f20 100644
--- a/src/wx/editable_list.h
+++ b/src/wx/editable_list.h
@@ -28,7 +28,8 @@ public:
std::vector<std::string> columns,
boost::function<std::vector<T> ()> get,
boost::function<void (std::vector<T>)> set,
- boost::function<std::string (T, int)> column
+ boost::function<std::string (T, int)> column,
+ int height = 100
)
: wxPanel (parent)
, _get (get)
@@ -43,7 +44,7 @@ public:
table->AddGrowableCol (0, 1);
s->Add (table, 1, wxALL | wxEXPAND, 8);
- _list = new wxListCtrl (this, wxID_ANY, wxDefaultPosition, wxSize (columns.size() * 200, 100), wxLC_REPORT | wxLC_SINGLE_SEL);
+ _list = new wxListCtrl (this, wxID_ANY, wxDefaultPosition, wxSize (columns.size() * 200, height), wxLC_REPORT | wxLC_SINGLE_SEL);
for (size_t i = 0; i < columns.size(); ++i) {
wxListItem ip;