Gerrit Sangel

Results 21 comments of Gerrit Sangel

Hi, sure no problem :) I just wanted to check whether I'm the only one with the problems. Generally I would say to add a bit more verbose text in...

So I think I identified the source for this (https://github.com/darktable-org/darktable/blob/master/src/common/collection.c#L380), but it somehow looks to me as if this was a deliberate design decision. For example, the comment is ```c...

> There are 872 physical images in 436 groups. Hmmm my question would be, whether the user thinks about "physical images" in this case. Or whether “groups” shouldn't better be...

> We could implement group types using tags which could then be leveraged for collection statistics Hmm but then you probably have to open some statistics page which is probably...

> And, we are not hearing from the people that like the way it works or don't care as long as it doesn't change (because they are used to it)....

> That's REALLY unfair and insulting! If that was the truth, then we wouldn't be having this discussion because I would have just ignored the change request in the first...

> This is a "feature" of windows any time you call a system command from inside a program. If you search you'll find lots of threads about the problem with...

Okay, thanks for the hint, i'll try and do some investigation.

Okay, so I did some tests with a rust program: ```rust #![windows_subsystem = "windows"] use mlua::prelude::*; fn main() -> LuaResult { let lua = Lua::new(); lua.load(r#"os.execute("notepad")"#).exec()?; Ok(()) } ``` So,...

@wpferguson Yes, still same behaviour. The standard Rust `Command` api does not open a terminal window, only the Lua one. I used mingw-w64-ucrt-x86_64-gcc as written on the msys2 homepage, and...