News:

The new Release 25.03 is out! You can download binaries for Windows and many major Linux distros here .

Main Menu

ctrl+f search popup annoyance

Started by ratahi, May 18, 2018, 09:24:20 AM

Previous topic - Next topic

ratahi

Hi. I try to search in settings. Try to search in google in this forum with words "popup", "notify", "tooltip", "Reached the end of the document".
But find only about "code completion popups".
How to disable this "the popup of the end of the document" (or all popups at all)?

oBFusCATed

I guess we'll need to add a global option to disable these info windows...

Any volunteer to do it?
The best would be if there is a list of all possible info windows shown up to this point of time and an option to disable them selectively.
Similarly how it is done for the annoying dialogs.
(most of the time I ignore long posts)
[strangers don't send me private messages, I'll ignore them; post a topic in the forum, but first read the rules!]

killerbot

could we see it as part of the annoying dialogs ? So registering and consulting in this list ?
pro : all pop-ups/dialogs suppression is in one place.
contra : well we can argue it are 2 different things ;-)

oBFusCATed

It will be good if they are in a single place in the UI. But I think there should be two lists. Also annoying dialogs have checkboxes in them. InfoWindows cannot have checkboxes. So the mechanism should be different.
(most of the time I ignore long posts)
[strangers don't send me private messages, I'll ignore them; post a topic in the forum, but first read the rules!]

gvh

Sorry for making a separate post on this, I didn't see this one. I've deleted the duplicate. For anyone else having this issue, you can resolve it by opening src/sdk/infowindow.cpp and making the following change to the InfoWindow::Display function:

// static
void InfoWindow::Display(const wxString& title, const wxString& message, unsigned int delay, unsigned int hysteresis)
{
    return; // NO

problem solved!