ktye

Results 24 issues of ktye

i realized that v86 takes lot's of cpu, even when the tab is in the background. one way to prevent this: ```js document.onvisibilitychange=function(e) { if(document.visibilityState=="visible") { if(!emulator.is_running()) emulator.run() } else...

enhancement

Is it (or will it) be possible to extend a running wasm instance with a new function? E.g. compile a function from wasm binary representation and add it to the...

enhancement

I'm trying to set different text colors for each line in a listbox by implementing the ListItemStyler. I can set the TextColor in the StyleItem method, but it takes no...

Sometimes dialogs appear on the wrong monitor (different from the main window, which is the owner). example: - in directory examples/databinding - ```go build -ldflags=-H windowsgui"``` (it does not happen...

It would be nice to search the currently selected text in Edit UIs with Button3, like in acme. I implemented this in ktye/duit@b5e969b This udates the cursor to the match...

As I understand, all widgets that should be referenced in another one, e.g. to change the text of a label, have to be declared upfront: ```go label := &duit.Label{Text: "status:...

I started a replacement for `draw` with a shiny backend: `https://github.com/ktye/duitdraw`. It runs on Windows, but is very basic at the moment. As I cannot test on other systems right...

Can you decode messages in a loop, instead of decoding the whole file in on call? An application is a corrupted fit file, where you want to extract all record...

enhancement
unfinished-unpushed-code

Currently, after decoding you basically get a flat activity file. This closly represents the fit file protocol. But an application might be more interested in a tree-structure of the activity,...

enhancement
unfinished-unpushed-code

Currently wasm-run executes every exported function. I modified it to execute expressions given as command line arguments in post fix order. e.g.: `wasm-run file.wasm 1 2 neg 3 add` (where...