From 77a25413af6694908d37bf2297d8ff8beff2e7f8 Mon Sep 17 00:00:00 2001 From: MURATA Mitsuharu Date: Sat, 9 Nov 2024 11:27:38 +0900 Subject: [PATCH] =?UTF-8?q?#1=20=E3=82=B3=E3=83=94=E3=83=BC=E3=83=9C?= =?UTF-8?q?=E3=82=BF=E3=83=B3=E6=A9=9F=E8=83=BD=E3=81=AE=E4=BF=AE=E5=BE=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Nanohana/MainWindow.xaml.cs | 4 ++-- README.md | 2 -- installer.nsh | 4 +++- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Nanohana/MainWindow.xaml.cs b/Nanohana/MainWindow.xaml.cs index 0b72053..a541c23 100644 --- a/Nanohana/MainWindow.xaml.cs +++ b/Nanohana/MainWindow.xaml.cs @@ -84,12 +84,12 @@ void CopyToClipboard(string text) void CopyId(object sender, RoutedEventArgs e) { - CopyToClipboard(loginItem.Id); + CopyToClipboard(UserId.Text); } void CopyPassword(object sender, RoutedEventArgs e) { - CopyToClipboard(loginItem.Password); + CopyToClipboard(InputPasswordBox.Password); } void ClickEditSite(object sender, RoutedEventArgs e) diff --git a/README.md b/README.md index ce4753a..ba81744 100644 --- a/README.md +++ b/README.md @@ -6,5 +6,3 @@ |![Dark Nanohana](docs/Dark.jpg)|![Light Nanohana](docs/Light.jpg)| ドキュメント (Documents) フォルダー下の `.nanohana` (隠しディレクトリ) にデータを保存します。OneDrive 等でドキュメントフォルダーが共有されている場合は、PC 間で同期されます。 - -制作時間: 2 日 \ No newline at end of file diff --git a/installer.nsh b/installer.nsh index 1cefa30..27326bb 100644 --- a/installer.nsh +++ b/installer.nsh @@ -81,4 +81,6 @@ Section "Uninstall" # レジストリ キーを削除 DeleteRegKey HKLM "Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\${PRODUCT_NAME}" -SectionEnd \ No newline at end of file +SectionEnd + +RequestExecutionLevel user \ No newline at end of file