Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
i57
dibugger
Commits
66ef02bc
Commit
66ef02bc
authored
Jul 21, 2018
by
Mihai Herda
Browse files
Back to original swing look and feel.
parent
c7037d06
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/dibugger/userinterface/MainInterface.java
View file @
66ef02bc
...
...
@@ -115,16 +115,16 @@ public class MainInterface extends JFrame {
// e1.printStackTrace();
// }
try
{
for
(
UIManager
.
LookAndFeelInfo
info
:
UIManager
.
getInstalledLookAndFeels
())
{
if
(
"Nimbus"
.
equals
(
info
.
getName
()))
{
UIManager
.
setLookAndFeel
(
info
.
getClassName
());
break
;
}
}
}
catch
(
Exception
e
)
{
// do nothing
}
//
try {
//
for (UIManager.LookAndFeelInfo info : UIManager.getInstalledLookAndFeels()) {
//
if ("Nimbus".equals(info.getName())) {
//
UIManager.setLookAndFeel(info.getClassName());
//
break;
//
}
//
}
//
} catch (Exception e) {
//
// do nothing
//
}
MainInterface
mainInterface
=
new
MainInterface
();
mainInterface
.
setSize
(
1200
,
900
);
mainInterface
.
setMinimumSize
(
new
Dimension
(
1165
,
800
));
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment