Thomas Eppers

Results 7 comments of Thomas Eppers

Currently it is possible to have duplicate task without error.

I get that point. But then there should be a way to see which one is overwritten (maybe a flag to check the config). The worst case scenario is when...

The current config also does not allow everything possible with ssh alone. For example I'm using JumpProxy ("-J"-Option). That is currently not possible (at least haven't found it).

Additional Info. The error occures in the album view when double clicking the on of the fields Album, Duration or Bitrate. It might also occure on other fields as well,...

I managed to find out where the error comes from. Problem was the types I accepted with set_types on the DropTarget. I also found out I need to I need...

I created a repo here https://github.com/eppixx/gtk4-dnd The relevant file is in factory/queue_item.rs

I found out that transfering a struct is possible by deriving glib::Boxed like in https://gtk-rs.org/gtk-rs-core/stable/latest/docs/glib/subclass/index.html#example-for-registering-a-boxed-type-for-a-rust-struct. Then the DropTarget needs to set_types to $STRUCT::static_type(). An abridged version: ``` rust #[derive(Clone, glib::Boxed)]...