Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add custom right-click context menu #613

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

moe93
Copy link

@moe93 moe93 commented Feb 20, 2025

Usage:

if (ImPlot::BeginPlot("My Plot", ImVec2(-1, 0), ImPlotFlags_NoCentralMenu))
{
    // Plot things before

    if (ImPlot::BeginCustomContext())
    {
        if (ImGui::MenuItem("My Custom Item")) doThing();
        ImPlot::EndCustomContext(true); // true = append standard menu
    }
    ImPlot::EndPlot();

    // Plot things after
}

This is the work of @PapaNaxos. I just packaged it and created the PR.

Pass ImPlotFlags_NoCentralMenu to BeginPlot()

Usage BeginCustomContext(){ ...; EndCustomContext() } within BeginPlot()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant