Tar

Results 29 comments of Tar

Hmm I'm not sure that's such a good idea. If I understand things correctly, that would mean that the further you zoom out, the more pixels have to be rendered...

Hey there, thanks for the poc! I've not been using pixi in a while though, and was not even aware there was a v7 already by now haha. So I...

Very true @artemdemo! I haven't really worked on this project in a long time, so I fumbled a little bit. But I tried publishing it, so feel free to give...

I'm sorry, I don't have time to test on mobile myself at this time. But really I have no idea how mobile would be any different than desktop, so I...

Apologies for the way late response. I only noticed this issue just now! I doubt you still want this answered, but I will answer it nevertheless in case somebody else...

Seems to be because of the 'path.join' that they use. They should have just added the '/' manually I think. Path.join gets rid of the './' at the start. I...

The code related to blinking can be found here: https://github.com/LaunchMenu/LaunchMenu/blob/3edf59e87e61c690d3b0a9288290c586af520d3b/packages/core/src/components/fields/syntaxField/SyntaxHighlighterSelection.tsx#L114 We can simply add some electron listeners to see if the window has focus, using `remote.getCurrentWindow()` like we've done in...

This is likely caused by this: [TextEditCommand.ts#L87](https://github.com/LaunchMenu/LaunchMenu/blob/master/packages/core/src/textFields/interaction/commands/TextEditCommand.ts#L87) We always set the new text, even if the contents weren't altered. We should add an if statement here to prevent unnecessary updates....

Imo focus should be different than is currently described in the main post. The calculator applet would be a simple applet mostly oriented towards common usecases that non-engineers may have....

This is our current standard Markdown component: [ReactMarkdown.tsx](https://github.com/LaunchMenu/LaunchMenu/blob/bfaf067420639c36354c59daf1df9c2a12097b47/packages/core/src/components/markdown/ReactMarkdown.tsx) Which is for instance used by the notes applet to render its content (when markdown syntax is selected and rich content is...