forked from JabRef/jabref
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bf4a55c
commit 369bf02
Showing
4 changed files
with
66 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,6 +41,8 @@ | |
import org.slf4j.Logger; | ||
import org.slf4j.LoggerFactory; | ||
|
||
import javax.swing.*; | ||
|
||
/** | ||
* Preferences dialog. Contains a TabbedPane, and tabs will be defined in separate classes. Tabs MUST implement the | ||
* PrefsTab interface, since this dialog will call the storeSettings() method of all tabs when the user presses ok. | ||
|
@@ -218,6 +220,11 @@ private void storeAllSettings() { | |
GUIGlobals.updateEntryEditorColors(); | ||
frame.setupAllTables(); | ||
frame.output(Localization.lang("Preferences recorded.")); | ||
|
||
//change | ||
JOptionPane.showMessageDialog(null, Globals.prefs.get(JabRefPreferences.USE_DEFAULT_FILE_BROWSER_APPLICATION)); | ||
This comment has been minimized.
Sorry, something went wrong.
Siedlerchr
|
||
JOptionPane.showMessageDialog(null, Globals.prefs.get(JabRefPreferences.FILE_BROWSER)); | ||
|
||
} | ||
|
||
public void setValues() { | ||
|
1 change: 0 additions & 1 deletion
1
src/main/java/org/jabref/model/bibtexkeypattern/GlobalBibtexKeyPattern.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I think your fork is out of sync with the master from upstream cause I recently replaced the JFileChooser with the JavaFX variant.
And create a PR for the changes