Add panel::forceUpdate()
This commit is contained in:
parent
dfaeadfbb9
commit
5a9273e11b
@ -361,6 +361,7 @@ void board::start(){
|
|||||||
i = ++i % PANELS_LENGTH;
|
i = ++i % PANELS_LENGTH;
|
||||||
|
|
||||||
OVERLAY->_title = PANELS[i]->_title;
|
OVERLAY->_title = PANELS[i]->_title;
|
||||||
|
OVERLAY->forceUpdate();
|
||||||
|
|
||||||
last_panel = start;
|
last_panel = start;
|
||||||
}
|
}
|
||||||
|
@ -5,3 +5,13 @@
|
|||||||
//
|
//
|
||||||
|
|
||||||
#include "panel.hpp"
|
#include "panel.hpp"
|
||||||
|
|
||||||
|
using namespace dashboard::panel;
|
||||||
|
|
||||||
|
void panel::forceUpdate(){
|
||||||
|
if(_texture == nullptr)
|
||||||
|
initTexture();
|
||||||
|
|
||||||
|
update();
|
||||||
|
update_texture();
|
||||||
|
}
|
||||||
|
@ -26,6 +26,8 @@ namespace dashboard::panel {
|
|||||||
|
|
||||||
virtual void draw() = 0;
|
virtual void draw() = 0;
|
||||||
|
|
||||||
|
void forceUpdate();
|
||||||
|
|
||||||
//in milliseconds
|
//in milliseconds
|
||||||
size_t _time_on_screen = 0;
|
size_t _time_on_screen = 0;
|
||||||
std::string _title;
|
std::string _title;
|
||||||
|
Loading…
Reference in New Issue
Block a user