17:49:23 https://postimg.cc/gallery/z55GfvY 17:49:27 A while ago I reported overlapping elements in the gui (screenshots above) 17:49:27 now I changed two lines of code and checked for every language that is currently available, that the issue is resolved. 17:50:00 But because there are a lot of untranslated strings, some future changes (if the translated string is longer than the source string) will probably cause new problems. I don't know if there is a dynamic solution with qml, which someone with more skills is able to implement!? 17:50:18 changes I made: 17:50:18 wizard/WizardRestoreWallet1.qml -> line 115 -> "spacing: 30" to "spacing: 200" 17:50:18 wizard/WizardDaemonSettings.qml -> line 107 -> added "spacing: 200" 17:50:57 I plan to look for similar issues on other windows, but this already took a me while... 17:50:57 Should I (learn how to do and then) do a PR with these changes, or wait until I checked for more and then merge all at once? 17:53:25 Learning how to do one is not wasted work. If you post a PR now, and it doesn't get merged soon, you can always add more to the PR later. 17:53:48 To add to the same commit: git add src/file.c ; git commit --amend 17:54:17 Then, to update the PR: git push -f github branchname (ie, just add -f to the original push command line) 17:54:46 Replace "github" with the name you gave that remote, and "branchname" with the actual brach name. 17:56:26 thanks, that's really helpful, I'm gonna save these commands