fix: fixed text widget value in the RAM module

This commit is contained in:
Serhiy Mytrovtsiy
2025-05-17 22:56:00 +02:00
parent 446f17e195
commit 348a8bfb91

View File

@@ -66,6 +66,7 @@ internal class Settings: NSStackView, Settings_v, NSTextFieldDelegate {
self.numberOfProcesses = Store.shared.int(key: "\(self.title)_processes", defaultValue: self.numberOfProcesses)
self.splitValueState = Store.shared.bool(key: "\(self.title)_splitValue", defaultValue: self.splitValueState)
self.notificationLevel = Store.shared.string(key: "\(self.title)_notificationLevel", defaultValue: self.notificationLevel)
self.textValue = Store.shared.string(key: "\(self.title)_textWidgetValue", defaultValue: self.textValue)
super.init(frame: NSRect.zero)