Krita Source Code Documentation
Loading...
Searching...
No Matches
colordepthcombobox.py
Go to the documentation of this file.
1# SPDX-License-Identifier: CC0-1.0
2
3try:
4 from PyQt6.QtWidgets import QComboBox
5except:
6 from PyQt5.QtWidgets import QComboBox
7
8
9class ColorDepthComboBox(QComboBox):
10
11 def __init__(self, uiColorSpace, parent=None):
12 super(ColorDepthComboBox, self).__init__(parent)
13
14 self.uiColorSpace = uiColorSpace
15
17
18 def changedTextColorDepthComboBox(self, colorDepth):
19 self.uiColorSpace.loadColorProfiles()
connect(this, SIGNAL(optionsChanged()), this, SLOT(saveOptions()))