Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions news/textbox-color.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
**Added:**

* <news item>

**Changed:**

* <news item>

**Deprecated:**

* <news item>

**Removed:**

* <news item>

**Fixed:**

* Change background color to match system settings in `Phase Configuration`.

**Security:**

* <news item>
2 changes: 1 addition & 1 deletion src/diffpy/pdfgui/gui/phaseconfigurepanel.py
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ def restrictConstrainedParameters(self):
else:
textCtrl.SetEditable(True)
# textCtrl.SetBackgroundColour(txtbg)
textCtrl.SetBackgroundColour(wx.WHITE)
textCtrl.SetBackgroundColour(wx.SystemSettings.GetColour(wx.SYS_COLOUR_GRAYTEXT))
Comment thread
cadenmyers13 marked this conversation as resolved.
Outdated

# Now the grid
rows = self.gridAtoms.GetNumberRows()
Expand Down