Home > Software design >  Debug window toolbar console missing arrows
Debug window toolbar console missing arrows

Time:02-11

I am trying to debug a simple program in Python with PyCharm debugger but when I put a break point and run debugger the arrows such as "Step Into" or "Step Over" doesn't show so I can't move on with debugging. The last time I used PyCharm I didn't have this problem and I don't believe I did anything that can change the debugger.

screenshot of debug window

CodePudding user response:

Try to uninstall it from the control panel and download it again

CodePudding user response:

The part of the toolbar you're refering to with the "Step Over" F8, "Step Into" F7 icons is called the "Debug Tool Window Top Toolbar" or the screenshot of debug window

You can also configure the icons individually by going to Settings > Apperance and Behavior > Menus and Toolbars > Debug Tool Window Top Toolbar > Add Action and using Choose Actions to Add.

screenshot of settings menus and toolbars

  • Related