File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -351,7 +351,7 @@ final class TemperatureMonitor: ObservableObject {
351351 private static func isOurMenu( _ menu: NSMenu ? ) -> Bool {
352352 guard let menu else { return false }
353353 let titles = Set ( menu. items. map ( \. title) )
354- return titles. contains ( " 지금 업데이트 " ) && titles. contains ( " 종료 " )
354+ return titles. contains ( " 온도 새로고침 " ) && titles. contains ( " 종료 " )
355355 }
356356
357357 private static func isOurMenuOrSubmenu( _ menu: NSMenu ? ) -> Bool {
@@ -702,14 +702,15 @@ struct MacTempMenuBarApp: App {
702702
703703 Divider ( )
704704
705- Button ( " 지금 업데이트 " ) {
705+ Button ( " 온도 새로고침 " ) {
706706 monitor. forceUpdate ( )
707707 }
708708 . keyboardShortcut ( " r " )
709709
710710 Button ( " 앱 업데이트 확인… " ) {
711711 updaterController. checkForUpdates ( nil )
712712 }
713+ . keyboardShortcut ( " u " )
713714
714715 Button ( " 종료 " ) {
715716 NSApplication . shared. terminate ( nil )
You can’t perform that action at this time.
0 commit comments