"Apply full upgrade" window is too small and changing the size doesn't persist

Hi,

I noticed when using the “Apply full upgrade” option that the default window size is really small. If you resize the window, the new size does not persist like others such as terminal.

If this is too small an issue to be a real bug, would anyone know how to workaround it? In researching it appears it may be done in rc.xml as it would be an openbox issue but not quite sure.

The python script is /usr/bin/lubuntu-upgrader

At line 58, you can guess the developer didn’t like the
jumpy output, and made a note to do something in the future…

  # TODO make a terminal work to see more info

Meanwhile, you can change the size at line 104

 self.setGeometry(300, 300, 500, 150)

The last two numbers are the width and height

e.g self.setGeometry(300, 300, 1000, 500)

(ref)
(disclaimer: make full backups before you mess with scripts)

2 Likes

That worked perfect, thank you @humpty for pointing me in the right direction!

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.