diff options
Diffstat (limited to 'src/sidebar.cc')
-rw-r--r-- | src/sidebar.cc | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/sidebar.cc b/src/sidebar.cc index 3093fc1..aced7bd 100644 --- a/src/sidebar.cc +++ b/src/sidebar.cc @@ -47,12 +47,15 @@ SideBar::SideBar(QWidget *parent) : QWidget(parent) // TODO this should probably be read from entities.ini // note that EditorWindow::loadFile should use the same list combo_entitytype->addItem(tr("entity")); - combo_entitytype->addItem(tr("planet")); - combo_entitytype->addItem(tr("station")); - combo_entitytype->addItem(tr("star")); combo_entitytype->addItem(tr("jumpgate")); combo_entitytype->addItem(tr("jumppoint")); combo_entitytype->addItem(tr("navpoint")); + combo_entitytype->addItem(tr("patrol")); + combo_entitytype->addItem(tr("platform")); + combo_entitytype->addItem(tr("planet")); + combo_entitytype->addItem(tr("station")); + combo_entitytype->addItem(tr("star")); + combo_entitytype->setEditable(true); box_entitytype->addWidget(label_entitytype); |