Skip to content

Commit cf73023

Browse files
authored
Update setting_window.py
1 parent 6e34c47 commit cf73023

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

presentation/widgets/setting_window.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,12 @@ def change_font_size(self, size: int):
3939
font.setPointSize(size)
4040
QApplication.instance().setFont(font)
4141

42-
settings = QSettings("YourCompany", "YourApp")
42+
settings = QSettings("NexumAILab", "NexumAI")
4343
settings.setValue("fontSize", size)
4444

4545
def paintEvent(self, event):
4646
painter = QPainter(self)
4747
painter.setRenderHint(QPainter.RenderHint.Antialiasing)
4848
painter.fillRect(self.rect(), QColor(0, 0, 0, 0))
4949
color = QColor(40, 40, 80, int(0.6 * 255))
50-
painter.fillRect(self.rect(), color)
50+
painter.fillRect(self.rect(), color)

0 commit comments

Comments
 (0)