2

I have an application which uses 3 splash screens in different scenarios. Problem is that I cannot seem to set a geometry or the positioning of these QSplashScreens. In fact, when the application size changes or the positioning of the application on the screen changes, the splash are displaying in random positions uncontrollably. How do I control that?

the_naive
  • 2,936
  • 6
  • 39
  • 68

1 Answers1

0

QSplashScreen inherited from QWidget and QWidget have move function. Use this function to change location of QSplashScreen

For example, splash.move(200, 200)

M.H.
  • 223
  • 3
  • 10
  • 23