chore: bump version

This commit is contained in:
reya
2024-07-02 14:36:16 +07:00
parent 04706a6d7c
commit c52b20ca80
7 changed files with 18 additions and 4 deletions

View File

@@ -24,6 +24,8 @@ export const Column = memo(function Column({
const [isCreated, setIsCreated] = useState(false);
const repositionWebview = useCallback(async () => {
if (!container?.current) throw new Error("something wrong.");
const newRect = container.current.getBoundingClientRect();
await invoke("reposition_column", {
label: webviewLabel,
@@ -33,6 +35,8 @@ export const Column = memo(function Column({
}, []);
const resizeWebview = useCallback(async () => {
if (!container?.current) throw new Error("something wrong.");
const newRect = container.current.getBoundingClientRect();
await invoke("resize_column", {
label: webviewLabel,