Christian Tietze

Results 266 comments of Christian Tietze

It seems the `ObservableState` route that uses a subscription is superior to exposing the `Store` itself as an `ObservableObject`: > Q: I have a class Store: ObservableObject that holds the...

@sarensw This is actually normal behavior (because even when you change a "leaf" in the state, the root value also changes). ReSwift offers to skip identical state updates when the...

@sarensw Swift is a bit stricter than vanilla JS when it comes to checking for value equality. It may be a good practice to slap "Equatable" onto all your subtypes...

@mhamann Thanks for reporting this! Could you test the package dependency locally and open a PR if changes need to be made? I can go ahead and create a tag...

Alright, feel free to close, then!

Sketched in code: ``` (defcustom neo-selection-indicator 'cursor :type '(choice (const :tag "Cursor" 'cursor) (const :tag "None" nil) (const :tag "Highlight Line" 'hl-line))) ``` Instead of constant values set to symbols,...

@Abdisalan I don't; this is rather preserving the current customization options (as I understand them). Switching between cursor and line highlight without a 3rd option sounds sensible to me, though.

It happens with nvPY "out of the box" config. Which mode would I have to chose to see if it doesn't crash in other circumstances?

I downloaded the nvpy git archive 30min ago and got this: ``` python.exe nvpy-master\nvpy\nvpy.py Traceback (most recent call last): File "nvpy-master\nvpy\nvpy.py", line 696, in main() File "nvpy-master\nvpy\nvpy.py", line 691, in...

I've double checked the current table names and it looks like the table names are the ones _without_ the `3`: https://github.com/nextcloud/social/blob/dc640af35f58484fcb2e206d92c2b58ec6fa3553/lib/Db/CoreRequestBuilder.php#L60-L74 So rather drop the old ones, aka `oc_social_3_action` instead...