File tree Expand file tree Collapse file tree
src/main/java/org/fife/rtext Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ configurations.all { // Check for updates every build
2323}
2424
2525dependencies {
26- implementation(' com.fifesoft.rtext:fife.common:6.1.0 ' )
26+ implementation(' com.fifesoft.rtext:fife.common:6.1.2 ' )
2727
2828 implementation(' com.fifesoft:rsyntaxtextarea:3.6.1' )
2929 implementation(' com.fifesoft:autocomplete:3.3.3' )
Original file line number Diff line number Diff line change @@ -497,7 +497,6 @@ public OptionsDialog getOptionsDialog() {
497497 OptionsDialog (this );
498498 }
499499
500- MacOSUtil .setTransparentTitleBar (optionsDialog , true );
501500 return optionsDialog ;
502501
503502 }
@@ -561,7 +560,6 @@ public HelpDialog getHelpDialog() {
561560 helpDialog = new HelpDialog (this ,
562561 contentsPath + "HelpDialogContents.xml" ,
563562 helpPath );
564- MacOSUtil .setTransparentTitleBar (helpDialog , true );
565563 helpDialog .setBackButtonIcon (getIconGroup ().getIcon ("back" ));
566564 helpDialog .setForwardButtonIcon (getIconGroup ().getIcon ("forward" ));
567565 }
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ public void actionPerformed(ActionEvent e) {
4949 RText rtext = getApplication ();
5050 TextFilePropertiesDialog dialog = new TextFilePropertiesDialog (
5151 rtext , rtext .getMainView ().getCurrentTextArea ());
52- MacOSUtil .setTransparentTitleBar (dialog , true );
52+ MacOSUtil .applyMacOsTweaks (dialog );
5353 dialog .setVisible (true );
5454 }
5555
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ public void actionPerformed(ActionEvent e) {
5454
5555 if (mainView .goToDialog ==null ) {
5656 mainView .goToDialog = new GoToDialog (rtext );
57- MacOSUtil .setTransparentTitleBar (mainView .goToDialog , true );
57+ MacOSUtil .applyMacOsTweaks (mainView .goToDialog );
5858 mainView .goToDialog .setErrorDialogTitle (
5959 rtext .getString ("ErrorDialogTitle" ));
6060 }
Original file line number Diff line number Diff line change @@ -60,7 +60,6 @@ public void actionPerformed(ActionEvent e) {
6060
6161 RText owner = getApplication ();
6262 NewMacroDialog nmd = new NewMacroDialog (plugin , owner );
63- MacOSUtil .setTransparentTitleBar (nmd , true );
6463 nmd .setVisible (true );
6564
6665 Macro macro = nmd .getMacro ();
Original file line number Diff line number Diff line change @@ -47,7 +47,6 @@ public void actionPerformed(ActionEvent e) {
4747
4848 RText owner = getApplication ();
4949 NewToolDialog ntd = new NewToolDialog (owner );
50- MacOSUtil .setTransparentTitleBar (ntd , true );
5150 ntd .setVisible (true );
5251
5352 Tool tool = ntd .getTool ();
You can’t perform that action at this time.
0 commit comments