diff --git a/soft/thermostat/src/mainwindow.cpp b/soft/thermostat/src/mainwindow.cpp index c24adc2..ca7cdc4 100644 --- a/soft/thermostat/src/mainwindow.cpp +++ b/soft/thermostat/src/mainwindow.cpp @@ -32,7 +32,10 @@ MainWindow::MainWindow(QWidget *parent) : zone = new ZoneItem(s->m_rooms.at(i).name, this); zone->m_zoneNameBtn.setProperty("idx", i); zone->m_target_temperature = get_target_temperature(i); + /* TODO: make a big clickable zone instead of 3 tiny buttons */ connect(&(zone->m_zoneNameBtn), SIGNAL(clicked()), this, SLOT(show_boost())); + connect(&(zone->m_temperatureBtn), SIGNAL(clicked()), this, SLOT(show_boost())); + connect(&(zone->m_hygroBtn), SIGNAL(clicked()), this, SLOT(show_boost())); m_zones << zone; }