From 2a63e6730deb1cfd5c2925eb7b20da130f8982bc Mon Sep 17 00:00:00 2001 From: Marko Lindqvist Date: Wed, 4 Oct 2023 22:25:40 +0300 Subject: [PATCH 16/47] Ruledit: Allow add/remove building in standard build See osdn #48765 Signed-off-by: Marko Lindqvist --- tools/ruledit/tab_building.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/tools/ruledit/tab_building.cpp b/tools/ruledit/tab_building.cpp index b5f13301d7..74cc5ac81f 100644 --- a/tools/ruledit/tab_building.cpp +++ b/tools/ruledit/tab_building.cpp @@ -98,12 +98,10 @@ tab_building::tab_building(ruledit_gui *ui_in) : QWidget() add_button = new QPushButton(QString::fromUtf8(R__("Add Building")), this); connect(add_button, SIGNAL(pressed()), this, SLOT(add_now2())); bldg_layout->addWidget(add_button, 5, 0); - show_experimental(add_button); delete_button = new QPushButton(QString::fromUtf8(R__("Remove this Building")), this); connect(delete_button, SIGNAL(pressed()), this, SLOT(delete_now())); bldg_layout->addWidget(delete_button, 5, 2); - show_experimental(delete_button); refresh(); update_bldg_info(nullptr); -- 2.40.1