Sognus / Gw2-Bosses

Raidcore addon adding meta events and world bosses notifications to in-game map.
1 stars 0 forks source link

Add simple shortcut (Context Menu of nexus icon) to disable notifications #16

Closed DeltaGW2 closed 4 months ago

DeltaGW2 commented 4 months ago

Currently you can only disable them via keybind, add a simple shortcut when right-clicking the nexus icon.

In Addon::Load() -> APIDefs->AddSimpleShortcut("QAS_BOSSES", AddonShortcut);

void AddonShortcut()
{
    if (ImGui::Checkbox("Show Notifications", &showNotifications))
    {
        /* save settings or some other logic in addition to toggling the bool */
    }
}
Sognus commented 4 months ago

Added in Version 1.1.0.0