-
Notifications
You must be signed in to change notification settings - Fork 115
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
Disable tooltips #213
Comments
i will look into this for the next release... |
hmm, i thought this would be a quick fix, but i have found no solution for this in the net. |
You are right. There is no easy solution for this. |
Added coloring of material editor window Added tooltips for gradient buttons
Finally found solution. Added eventFilter for tooltips in qApplication
|
cool! well done
…On Thu, Jul 11, 2019 at 4:25 AM Krzysztof Marczak ***@***.***> wrote:
Finally found solution. Added eventFilter for tooltips in qApplication
bool RenderWindow::eventFilter(QObject *obj, QEvent *event)
{
if (event->type() == QEvent::ToolTip && !gPar->Get<bool>("display_tooltips"))
{
{
return true;
}
}
else
{
return QMainWindow::eventFilter(obj, event);
}
}
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#213?email_source=notifications&email_token=ADBNSHAAAQAOETXCFCOUVMTP6YEPNA5CNFSM4C5U5MIKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZUAGEA#issuecomment-510133008>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ADBNSHG7TODZQRJMZQSI5VTP6YEPNANCNFSM4C5U5MIA>
.
|
:D finally |
Enhancement for V2,11
Disable tooltips in program settings.
The text was updated successfully, but these errors were encountered: