We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Operating system: OSX (Mac) wxPython version & source: pip Python version & source: stock 3.12
Description of the problem:
I am trying to add text on the right hand side of the MenuBarIcon like this:
However I can't seem to be able to do this using the current wx implementation
app = wx.App(redirect=False) frame = MainFrame(None) # app.MainLoop() from AppKit import AppDelegate, NSApp from PyObjCTools import AppHelper from Cocoa import NSApplication app = NSApplication.sharedApplication() delegate = AppDelegate.alloc().init() NSApp().setDelegate_(delegate) AppHelper.runEventLoop() ... statusitem = NSStatusBar.systemStatusBar().statusItemWithLength_(-1) statusitem.setTitle_(title) statusitem.setImage_(icon)``` </details>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Operating system: OSX (Mac)
wxPython version & source: pip
Python version & source: stock 3.12
Description of the problem:
I am trying to add text on the right hand side of the MenuBarIcon like this:
However I can't seem to be able to do this using the current wx implementation
What I've tried so far (click to expand)
The text was updated successfully, but these errors were encountered: