Skip to content

Commit

Permalink
fix zbolt image
Browse files Browse the repository at this point in the history
  • Loading branch information
kevdliu committed Apr 17, 2024
1 parent d0ac52c commit fbde711
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/printertune_panel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ LV_IMG_DECLARE(chart_img);
LV_IMG_DECLARE(belts_calibration_img);
LV_IMG_DECLARE(power_devices_img);
#else
LV_IMG_DECLARE(print_img);
LV_IMG_DECLARE(print);
#endif

PrinterTunePanel::PrinterTunePanel(KWebSocketClient &c, std::mutex &l, lv_obj_t *parent, FineTunePanel &finetune)
Expand All @@ -44,7 +44,7 @@ PrinterTunePanel::PrinterTunePanel(KWebSocketClient &c, std::mutex &l, lv_obj_t
#ifndef ZBOLT
, power_devices_btn(cont, &power_devices_img, "Power Devices", &PrinterTunePanel::_handle_callback, this)
#else
, power_devices_btn(cont, &print_img, "Power Devices", &PrinterTunePanel::_handle_callback, this)
, power_devices_btn(cont, &print, "Power Devices", &PrinterTunePanel::_handle_callback, this)
#endif
{
lv_obj_move_background(cont);
Expand Down

0 comments on commit fbde711

Please sign in to comment.