HJarausch

Results 14 comments of HJarausch

That's a pity. Lazy people like me would like to look at a demo which shows the features of a piece of software before the dive into the documentation. And,...

Strangely enough, just setting export GDK_SYNCHRONIZE=1 before starting geeqie still shows this error but **does not crash** anymore - not a fixed but a workaround

> @innolee you can read/write to your media folder on the sdcard at /storage/XXXX-XXXX/Android/media/com.termux. Other apps can access this folder, unlike the data folder, and while it's likely intended for...

Thanks! In addition to your patch, I have applied the following patch ```nim template asOpenArray*[T](a: VarLengthArray[T]): openarray[T] = - cast[seq[type(a[0])]](a) + toOpenArray(addr a.data[0],0,a.len) ``` using the new? ``toOpenArray`` function from...