From 9c32d4f4b35590b379a0622d06206aec203dc9a3 Mon Sep 17 00:00:00 2001 From: yuta0801 Date: Sun, 3 Jun 2018 07:57:57 +0900 Subject: [PATCH 1/2] =?UTF-8?q?fix:=20=E7=B5=82=E4=BA=86=E3=83=9C=E3=82=BF?= =?UTF-8?q?=E3=83=B3=E3=81=AE=E3=82=AF=E3=83=AA=E3=83=83=E3=82=AF=E3=82=A4?= =?UTF-8?q?=E3=83=99=E3=83=B3=E3=83=88=E3=81=8C=E7=99=BA=E7=81=AB=E3=81=97?= =?UTF-8?q?=E3=81=AA=E3=81=84=E5=95=8F=E9=A1=8C=E3=82=92=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/scripts/components/tag/title-bar.tag | 1 + 1 file changed, 1 insertion(+) diff --git a/src/scripts/components/tag/title-bar.tag b/src/scripts/components/tag/title-bar.tag index bc97e07..1530539 100644 --- a/src/scripts/components/tag/title-bar.tag +++ b/src/scripts/components/tag/title-bar.tag @@ -16,6 +16,7 @@ title-bar width: 12px; height: 12px; border-radius: 50%; + -webkit-app-region: no-drag; } :scope .close:before, :scope .close:after { From 8195a35192eb8dc70cef6a0e0ae331f994536a60 Mon Sep 17 00:00:00 2001 From: yuta0801 Date: Sun, 3 Jun 2018 08:02:55 +0900 Subject: [PATCH 2/2] =?UTF-8?q?fix:=20=E7=B4=B0=E3=81=8B=E3=81=AA=E4=BF=AE?= =?UTF-8?q?=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - タイトルバーダブルクリックによる最大化を防止 - 終了ボタンのカーソルをポインターに変更 --- src/config/window.json | 3 ++- src/scripts/components/tag/title-bar.tag | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/config/window.json b/src/config/window.json index 0dfd045..767083d 100644 --- a/src/config/window.json +++ b/src/config/window.json @@ -3,5 +3,6 @@ "height" : 150, "transparent" : true, "frame" : false, - "resizable" : false + "resizable" : false, + "maximizable" : false } \ No newline at end of file diff --git a/src/scripts/components/tag/title-bar.tag b/src/scripts/components/tag/title-bar.tag index 1530539..2c62123 100644 --- a/src/scripts/components/tag/title-bar.tag +++ b/src/scripts/components/tag/title-bar.tag @@ -16,6 +16,7 @@ title-bar width: 12px; height: 12px; border-radius: 50%; + cursor: pointer; -webkit-app-region: no-drag; } :scope .close:before,