Compare commits
No commits in common. "98015a40d806d07683c7bb3e207140eefb65f317" and "062f5fa7f1e87f7365159cf45c3cebc320cfd6ae" have entirely different histories.
98015a40d8
...
062f5fa7f1
|
|
@ -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 (`π`).
|
||||
|
|
|
|||
|
|
@ -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),
|
||||
|
|
|
|||
Loadingβ¦
Reference in New Issue