Commit 14e5a933 authored by Kirill Kirichenko's avatar Kirill Kirichenko
Browse files

IDEA-171869 Win10 LaF plugins table border and spinner editor fixes

parent 27452cb1
Showing with 6 additions and 2 deletions
+6 -2
......@@ -59,7 +59,8 @@ public class WinIntelliJTextFieldUI extends DarculaTextFieldUI {
@Override
protected void paintBackground(Graphics g) {
JTextComponent c = getComponent();
if (UIUtil.getParentOfType(JComboBox.class, c) != null) return;
if (UIUtil.getParentOfType(JComboBox.class, c) != null ||
UIUtil.getParentOfType(JSpinner.class, c) != null) return;
Graphics2D g2 = (Graphics2D)g.create();
try {
......
......@@ -22,7 +22,7 @@ infoText=000000
OptionPane.messageForeground=000000
DialogWrapper.southPanelDivider=f0f0f0
DialogWrapper.southPanelBackground=f0f0f0
OnePixelDivider.background=f2f2f2
OnePixelDivider.background=adadad
Menu.maxGutterIconWidth=18
MenuItem.maxGutterIconWidth=18
......@@ -79,6 +79,8 @@ ProgressBar.border=com.intellij.ide.ui.laf.darcula.ui.DarculaProgressBarBorder
ProgressBar.foreground=808080
FormattedTextField.background=ffffff
FormattedTextFieldUI=com.intellij.ide.ui.laf.intellij.WinIntelliJTextFieldUI
FormattedTextField.border=com.intellij.ide.ui.laf.intellij.WinIntelliJTextBorder
CheckBoxUI=com.intellij.ide.ui.laf.intellij.WinIntelliJCheckBoxUI
CheckBox.disabledText=8a8a8a
......
......@@ -1026,6 +1026,7 @@ ide.text.effect.new.metrics=true
ide.text.effect.new.metrics.description=Use line metrics to calculate text offset in the effect painter
ide.intellij.laf.win10.ui=true
ide.intellij.laf.win10.restartRequired=true
ide.intellij.laf.win10.ui.description=Enables Windows 10 look
ide.http.server.response.actual.status=false
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment