change some labels and display tox status in main menu bar
Some checks failed
ContinuousDelivery / linux-ubuntu (push) Has been cancelled
ContinuousDelivery / android (map[ndk_abi:arm64-v8a vcpkg_toolkit:arm64-android]) (push) Has been cancelled
ContinuousDelivery / android (map[ndk_abi:armeabi-v7a vcpkg_toolkit:arm-neon-android]) (push) Has been cancelled
ContinuousDelivery / android (map[ndk_abi:x86_64 vcpkg_toolkit:x64-android]) (push) Has been cancelled
ContinuousDelivery / windows (push) Has been cancelled
ContinuousDelivery / windows-asan (push) Has been cancelled
ContinuousIntegration / linux (push) Has been cancelled
ContinuousIntegration / android (map[ndk_abi:arm64-v8a vcpkg_toolkit:arm64-android]) (push) Has been cancelled
ContinuousIntegration / android (map[ndk_abi:armeabi-v7a vcpkg_toolkit:arm-neon-android]) (push) Has been cancelled
ContinuousIntegration / android (map[ndk_abi:x86_64 vcpkg_toolkit:x64-android]) (push) Has been cancelled
ContinuousIntegration / macos (push) Has been cancelled
ContinuousIntegration / windows (push) Has been cancelled
ContinuousDelivery / release (push) Has been cancelled

based on user feedback
This commit is contained in:
Green Sky
2024-11-15 00:07:15 +01:00
parent 9bf9753bd1
commit 9277ef34f6
5 changed files with 44 additions and 9 deletions

View File

@@ -2,6 +2,7 @@
class ToxClient;
struct ConfigModelI;
struct ToxPrivateI;
class ToxUIUtils {
bool _show_add_friend_window {false};
@@ -9,11 +10,13 @@ class ToxUIUtils {
ToxClient& _tc;
ConfigModelI& _conf;
ToxPrivateI* _tp{nullptr};
public:
ToxUIUtils(
ToxClient& tc,
ConfigModelI& conf
ConfigModelI& conf,
ToxPrivateI* tp = nullptr
);
void render(void);