Billy Bednar

Results 13 comments of Billy Bednar

> For now, the old settings are still accessible from the "Advanced Settings" screen: OAuth is still working for me so definitely keep them for now. > The UI probably...

I'm trying to get this to work as well. DPS hides all the buttons on a `FloatWindow` when none of its contents have an enabled and visible close button. There's...

`MessageBox.Show("test message");` needs to be `MessageBox.Show(this, "test message");` If you don't specify an owner, the framework will call `GetActiveWindow` and use that. During dragging the active window is the temporary...

The same applies to `status_info`, which is declared on the line after `ifault`.

This reliably happens after switching to graphing mode, which can be done accidentally by pressing Alt+3 instead of Alt+2 or 4.

More specifically it happens after switching to graphing mode if there is another instance of the calculator running on a different desktop (can create/switch by pressing WIN + TAB).

Defining constants using casts should generally be avoided because they're not valid in `#if` directives. For registers smaller than `int`, adding casts seems unlikely to help in most cases. You...

It looks like the [comparison is done only](https://github.com/jsleroy/compare-plugin/blob/2e55f818f219cf646ca344a2df6a20c5d9197d41/src/Engine/Engine.cpp#L321-L352) on a [weak hash](https://github.com/jsleroy/compare-plugin/blob/2e55f818f219cf646ca344a2df6a20c5d9197d41/src/Engine/Engine.cpp#L29) of each line, rather than the full text of the line.

FYI many common tools use libiberty's expandargv or a compatible implementation. They check for the leading @ after all escaping/quoting is resolved and don't provide any way to prevent an...

> Indeed, i got the same issue. The crux of the problem is that in .NET (core) the application is separate from the launcher (Launcher.exe). > > To work around...