Skip to content

Commit

Permalink
Merge pull request #177 from vincenzopalazzo/development
Browse files Browse the repository at this point in the history
fixed bug in the resize and move windows
  • Loading branch information
vincenzopalazzo authored Mar 26, 2022
2 parents 7001db6 + 93354a5 commit bdd26ee
Show file tree
Hide file tree
Showing 6 changed files with 1,856 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/main/java/mdlaf/MaterialLookAndFeel.java
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
import mdlaf.components.progressbar.MaterialProgressBarUI;
import mdlaf.components.radiobutton.MaterialRadioButtonUI;
import mdlaf.components.radiobuttonmenuitem.MaterialRadioButtonMenuItemUI;
import mdlaf.components.rootpane.MaterialRootPaneUI;
import mdlaf.components.rootpane.MaterialRootPaneUIv2;
import mdlaf.components.scrollbar.MaterialScrollBarUI;
import mdlaf.components.separator.MaterialSeparatorUI;
import mdlaf.components.slider.MaterialSliderUI;
Expand Down Expand Up @@ -120,7 +120,7 @@ public class MaterialLookAndFeel extends MetalLookAndFeel {
private static final String internalFrameUI = MaterialInternalFrameUI.class.getCanonicalName();
private static final String textAreaUI = MaterialTextAreaUI.class.getCanonicalName();
private static final String editorPane = MaterialEditorPaneUI.class.getCanonicalName();
private static final String rootPane = MaterialRootPaneUI.class.getCanonicalName();
private static final String rootPane = MaterialRootPaneUIv2.class.getCanonicalName();
private static final String optionPaneUI = MaterialOptionPaneUI.class.getCanonicalName();
private static final String colorChooserUI = MaterialColorChooser.class.getCanonicalName();
private static final String splitPaneUI = MaterialSplitPaneUI.class.getCanonicalName();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
* @author Terry Kellerman // This code is inside the Open JDK
* @author https://github.com/vincenzopalazzo
*/
@Deprecated
public class MaterialRootPaneUI extends BasicRootPaneUI {

protected static final String[] borderKeys =
Expand Down
Loading

0 comments on commit bdd26ee

Please sign in to comment.