Update GUI screenshot in README.

This commit is contained in:
2026-02-08 15:10:06 -05:00
parent c76529b3cb
commit 41fab2847d
3 changed files with 5 additions and 5 deletions

View File

@@ -107,6 +107,8 @@ cargo run
clide clide
``` ```
![image](./resources/gui.png)
## Development ## Development
It's recommended to use RustRover or Qt Creator for development. It's recommended to use RustRover or Qt Creator for development.

View File

@@ -20,13 +20,11 @@ Rectangle {
if (cleaned.endsWith("/")) if (cleaned.endsWith("/"))
cleaned = cleaned.slice(0, -1); cleaned = cleaned.slice(0, -1);
Logger.trace("Building segments for path: " + cleaned); Logger.trace("Building segments for path: " + cleaned);
segments = []; segments = ["/"];
fullPaths = []; fullPaths = ["/"];
segments.push("/");
fullPaths.push("/");
let parts = cleaned.split("/"); let parts = cleaned.split("/");
let current = ""; let current = "";
// We already pushed the root `/` path above, so skip index 0. // We already pushed the root `/` path during initialization, so skip index 0.
for (let i = 1; i < parts.length; ++i) { for (let i = 1; i < parts.length; ++i) {
current += "/" + parts[i]; current += "/" + parts[i];
Logger.trace("Pushing path: " + parts[i] + " Current: " + current); Logger.trace("Pushing path: " + parts[i] + " Current: " + current);

BIN
resources/gui.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 324 KiB