auro
auro

Reputation: 1089

Pudb source screen is squished, other screens are expanded (see screenshot)

Any solution to this? This happens in certain folders, not in every folder. Cannot figure out what causes this.

Worth mentioning that another c++ program is invoking the python script that has 'from pudb import set_trace' and 'set_trace()' in it.

squished Pudb screen

Upvotes: 1

Views: 312

Answers (2)

DevendraK
DevendraK

Reputation: 121

What else may work for you is the pudb.cfg file. This file can be located at ~/.config/pudb

You can change the sidebar_width = 0.4, where 0.4 can be changed to a value of your taste.

The higher the value, the bigger the screen size.

Upvotes: 1

auro
auro

Reputation: 1089

Fixed but not root-caused. Turns out, a redirection (of the logs into a file) in the run-script was causing it. Removing the redirection fixed it.

enter image description here

Upvotes: 1

Related Questions