Compare commits

..

No commits in common. "98015a40d806d07683c7bb3e207140eefb65f317" and "062f5fa7f1e87f7365159cf45c3cebc320cfd6ae" have entirely different histories.

2 changed files with 3 additions and 4 deletions

View File

@ -28,8 +28,7 @@ source .venv/Scripts/activate
uv pip install .
uv run icra
```
The launcher copies Tcl/Tk resources into the virtualenv on first run, so no manual environment tweaks are needed.
On macOS/Linux activate with `source .venv/bin/activate` instead.
The launcher copies Tcl/Tk resources into the virtualenv on first run, so no manual environment tweaks are needed. On macOS/Linux replace the activate step with `source .venv/bin/activate`.
## Workflow
1. Load an image (`πŸ“‚`) or a folder (`πŸ“`).

View File

@ -17,8 +17,8 @@ class UIBuilderMixin:
toolbar = ttk.Frame(self.root)
toolbar.pack(fill=tk.X, padx=12, pady=(4, 2))
buttons = [
("🧩", self._t("toolbar.open_image"), self.load_image),
("πŸ“‚", self._t("toolbar.open_folder"), self.load_folder),
("πŸ“‚", self._t("toolbar.open_image"), self.load_image),
("πŸ“", self._t("toolbar.open_folder"), self.load_folder),
("🎨", self._t("toolbar.choose_color"), self.choose_color),
("πŸ–±", self._t("toolbar.pick_from_image"), self.enable_pick_mode),
("πŸ’Ύ", self._t("toolbar.save_overlay"), self.save_overlay),