gui #17

Merged
shaunrd0 merged 41 commits from gui into main 2026-02-08 21:25:05 +00:00
3 changed files with 5 additions and 5 deletions
Showing only changes of commit 41fab2847d - Show all commits

View File

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

View File

@@ -20,13 +20,11 @@ Rectangle {
if (cleaned.endsWith("/"))
cleaned = cleaned.slice(0, -1);
Logger.trace("Building segments for path: " + cleaned);
segments = [];
fullPaths = [];
segments.push("/");
fullPaths.push("/");
segments = ["/"];
fullPaths = ["/"];
let parts = cleaned.split("/");
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) {
current += "/" + parts[i];
Logger.trace("Pushing path: " + parts[i] + " Current: " + current);

BIN
resources/gui.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 324 KiB