Skip to content

Commit a9c1e84

Browse files
committed
Inform the user about possibly uncorrect acpi calls if laptop is not supported.
1 parent 1674ad3 commit a9c1e84

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def init_acpi_call(self):
9797
if self.is_dell_g15:
9898
print("Laptop model is supported.")
9999
else:
100-
choice = QMessageBox.question(self,"Unrecognized laptop","Laptop model is NOT supported. Try ACPI methods anyway? You might damage your hardware. Please do not do this if you don't know what you are doing!",QMessageBox.StandardButton.Yes | QMessageBox.StandardButton.No)
100+
choice = QMessageBox.question(self,"Unrecognized laptop","Laptop model is NOT supported. Try ACPI methods for G15 5525 anyway? You might damage your hardware. Please do not do this if you don't know what you are doing!",QMessageBox.StandardButton.Yes | QMessageBox.StandardButton.No)
101101
self.is_dell_g15 = (choice == QMessageBox.StandardButton.Yes) #User override
102102

103103
def checkLaptapModel(self):

0 commit comments

Comments
 (0)