disable window frame
- 
Hi, how to disable window frame? So that it works also on win7 without windows aero enabled? P.S: using QWebEngineView 
- 
 I need to stay just the picture (no white background underneath). How can I do that? 
- 
Try; 
 setWindowFlags(Qt::FramelessWindowHint);
 setAttribute(Qt::WA_TranslucentBackground);and maybe also: 
 setAutoFillBackground(false);@mpergand said in disable window frame: setAutoFillBackground(false); It works fine on windows 10, but on win7 it's bad Screen on win7:  Screen on win10:  
- 
up (8 chars) 
