John

Results 168 comments of John

FYI: activateIgnoringOtherApps is going to get deprecated in macOS 26.0 (see https://developer.apple.com/documentation/appkit/nsapplication/activate(ignoringotherapps:)?language=objc ). The new ``activate`` API is weird and only macOS 14.0+, and the Winforms solution isn't really satisfying....

Hey y'all, I have a working example for putting a button on a listview. I do have some copyright concerns though, I've used a list of potential problems described in...

Oh, and here's a video demo of this (the button resizes the table): https://github.com/user-attachments/assets/a81a5f1f-55b7-4298-abd3-1e056c8ec530 If there's no copyright concerns I'll post the code in another repo with an appropriate and...

OK... there's some bugs in my previous version; like when you press up and down key it doesn't move the button, when you double-click header to fit to text it...

My copyright concerns is that I used the introduction of one of the non-freely-licensed articles as a checklist -- the code here is completely originally authored but the author of...

> Also - as @johnzhou721 has noted, the `test_import` that you've added won't ever be executed. That said - if the lazy import is done right, it won't _need_ any...

Wow... didn't realize it *wasn't* covered now!!! My eyes tend to ignore gray things (comments in Xcode as I don't even have a proper IDE just random apps that happens...

@sarayourfriend Are you still planning to continue this? With the latest date input commit, this and a time input PR, GTK will be our second feature-complete platform. edit: after my...

Cannot reproduce with just a single TextInput... will post code tomorrow.

In ``beeware-tutorial/helloworld/src/helloworld/app.py``, rest of files unchanged from BeeWare Tutorial (accepting all defaults on the step for cookiecutter): ``` import toga def button_handler(widget): print("hello") def build(app): box = toga.Box() inputbox =...