Skip to content

Commit

Permalink
Make source creation dialogs always on top
Browse files Browse the repository at this point in the history
  • Loading branch information
serivesmejia committed Jan 27, 2025
1 parent 5bdf1e7 commit eb9d12d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -402,6 +402,7 @@ public void initCreateImageSource() {

createCameraSource.pack();
createCameraSource.setResizable(false);
createCameraSource.setAlwaysOnTop(true);
createCameraSource.setLocationRelativeTo(null);
createCameraSource.setVisible(true);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,7 @@ public void changed() {

createImageSource.pack();
createImageSource.setLocationRelativeTo(null);
createImageSource.setAlwaysOnTop(true);
createImageSource.setResizable(false);
createImageSource.setVisible(true);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,7 @@ public void changed() {

createVideoSource.pack();
createVideoSource.setLocationRelativeTo(null);
createVideoSource.setAlwaysOnTop(true);
createVideoSource.setResizable(false);
createVideoSource.setVisible(true);
}
Expand Down

0 comments on commit eb9d12d

Please sign in to comment.