Corrected MessageHandler file name case

This commit is contained in:
2023-08-20 11:40:07 +00:00
parent 160a52db66
commit 5d4c09fc99
+11
View File
@@ -0,0 +1,11 @@
from PySide6.QtWidgets import QMessageBox
@staticmethod
class MessageHandler():
def ShowNoDevicesFoundError(self):
msg = QMessageBox()
msg.setWindowTitle("LiquidGUI Error")
msg.setText("No suitable devices could be detected. Please ensure you have a cooler \
both compatible with LiquidCTL, and connected to the system.")
msg.setIcon(QMessageBox.Icon.Warning)
msg.exec()