wxpython menu bar not displaying

前端 未结 5 937
梦如初夏
梦如初夏 2021-01-06 15:46

I am trying to write a timetabling program using wxpython for gui and am using the getting started tutorial on the wxpython wiki to get up to speed with wxpython but when I

5条回答
  •  无人及你
    2021-01-06 16:05

    I had the same problem where i could not see the menu bar because it as in the "taskbar" way up there. So you can just add this to your python script if you do not want to permanantly change your .bashrc file

    import os
    os.environ["UBUNTU_MENUPROXY"]="0"
    

提交回复
热议问题