mirror of
https://github.com/moonlight-stream/moonlight-embedded.git
synced 2026-04-24 00:56:42 +00:00
made fullscreen default
This commit is contained in:
Binary file not shown.
@@ -62,7 +62,7 @@ public class MainFrame {
|
|||||||
pair.addActionListener(createPairButtonListener());
|
pair.addActionListener(createPairButtonListener());
|
||||||
pair.setToolTipText("Send pair request to GeForce PC");
|
pair.setToolTipText("Send pair request to GeForce PC");
|
||||||
|
|
||||||
fullscreen = new JCheckBox("Fullscreen");
|
fullscreen = new JCheckBox("Fullscreen", true);
|
||||||
|
|
||||||
Box streamBox = Box.createHorizontalBox();
|
Box streamBox = Box.createHorizontalBox();
|
||||||
streamBox.add(Box.createHorizontalGlue());
|
streamBox.add(Box.createHorizontalGlue());
|
||||||
@@ -91,7 +91,6 @@ public class MainFrame {
|
|||||||
contentBox.add(pairBox);
|
contentBox.add(pairBox);
|
||||||
contentBox.add(Box.createVerticalGlue());
|
contentBox.add(Box.createVerticalGlue());
|
||||||
|
|
||||||
|
|
||||||
centerPane.add(contentBox);
|
centerPane.add(contentBox);
|
||||||
mainPane.add(centerPane, "Center");
|
mainPane.add(centerPane, "Center");
|
||||||
Dimension dim = Toolkit.getDefaultToolkit().getScreenSize();
|
Dimension dim = Toolkit.getDefaultToolkit().getScreenSize();
|
||||||
@@ -101,7 +100,6 @@ public class MainFrame {
|
|||||||
limeFrame.setLocation(dim.width/2-limeFrame.getSize().width/2, dim.height/2-limeFrame.getSize().height/2);
|
limeFrame.setLocation(dim.width/2-limeFrame.getSize().width/2, dim.height/2-limeFrame.getSize().height/2);
|
||||||
limeFrame.setResizable(false);
|
limeFrame.setResizable(false);
|
||||||
limeFrame.setVisible(true);
|
limeFrame.setVisible(true);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private ActionListener createStreamButtonListener() {
|
private ActionListener createStreamButtonListener() {
|
||||||
|
|||||||
Reference in New Issue
Block a user