We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello,
When I switch the app on full screen and then switch back to the normal size, the title bar is not hidden anymore.
Thanks
The text was updated successfully, but these errors were encountered:
in widget.h add changeEvent to public slots
public slots: virtual void changeEvent(QEvent * event)
in widget.cpp add follow code:
void Widget::changeEvent( QEvent* e ) { #ifdef __APPLE__ OSXHideTitleBar::HideTitleBar(winId()); #endif }
hide title bar whatever event happend
Sorry, something went wrong.
I'm having an issue where when I add a QTabBar widget to a window, the native system title bar appears again, how can I fix it?
in widget.h add changeEvent to public slots public slots: virtual void changeEvent(QEvent * event) in widget.cpp add follow code: void Widget::changeEvent( QEvent* e ) { #ifdef __APPLE__ OSXHideTitleBar::HideTitleBar(winId()); #endif } hide title bar whatever event happend
No branches or pull requests
Hello,
When I switch the app on full screen and then switch back to the normal size, the title bar is not hidden anymore.
Thanks
The text was updated successfully, but these errors were encountered: