Skip to content

Commit

Permalink
#1 コピーボタン機能の修復
Browse files Browse the repository at this point in the history
  • Loading branch information
Himeyama committed Nov 9, 2024
1 parent 4643426 commit 77a2541
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Nanohana/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,3 @@
|![Dark Nanohana](docs/Dark.jpg)|![Light Nanohana](docs/Light.jpg)|

ドキュメント (Documents) フォルダー下の `.nanohana` (隠しディレクトリ) にデータを保存します。OneDrive 等でドキュメントフォルダーが共有されている場合は、PC 間で同期されます。

制作時間: 2 日
4 changes: 3 additions & 1 deletion installer.nsh
Original file line number Diff line number Diff line change
Expand Up @@ -81,4 +81,6 @@ Section "Uninstall"

# レジストリ キーを削除
DeleteRegKey HKLM "Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\${PRODUCT_NAME}"
SectionEnd
SectionEnd

RequestExecutionLevel user

0 comments on commit 77a2541

Please sign in to comment.