Skip to content

Commit 82894aa

Browse files
authored
Merge pull request #26 from pouyacodes/main
Update setting_window.py
2 parents 6e34c47 + a69d3ab commit 82894aa

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("AINexumLab", "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)