manual rerun bootstrap option

This commit is contained in:
2024-06-07 10:58:42 +02:00
parent 85b5c9200a
commit a2001b34ea
4 changed files with 58 additions and 45 deletions

View File

@ -1,18 +1,18 @@
#pragma once
struct ToxI;
class ToxClient;
struct ConfigModelI;
class ToxUIUtils {
bool _show_add_friend_window {false};
bool _show_add_group_window {false};
ToxI& _t;
ToxClient& _tc;
ConfigModelI& _conf;
public:
ToxUIUtils(
ToxI& t,
ToxClient& tc,
ConfigModelI& conf
);