Make binary portable and other fixes
This commit is contained in:
@@ -8,9 +8,13 @@
|
||||
struct Bar {
|
||||
Coord screen;
|
||||
std::string command = "";
|
||||
std::string log_line = "";
|
||||
uint32_t cursor = 0;
|
||||
BarLine bar_line;
|
||||
std::mutex mtx;
|
||||
|
||||
Bar(Coord screen) : screen(screen) {}
|
||||
void init(Coord screen) { this->screen = screen; }
|
||||
void work();
|
||||
void render();
|
||||
void handle(KeyEvent event);
|
||||
void log(std::string message);
|
||||
|
||||
Reference in New Issue
Block a user