mirror of
https://github.com/mitb-archive/filebot
synced 2024-12-24 08:48:51 -05:00
* simplify name
This commit is contained in:
parent
769306b0e7
commit
cf9045d3a4
@ -33,6 +33,11 @@ public class SinglePanelFrame extends JFrame {
|
|||||||
|
|
||||||
setSize(850, 600);
|
setSize(850, 600);
|
||||||
setMinimumSize(new Dimension(800, 400));
|
setMinimumSize(new Dimension(800, 400));
|
||||||
|
|
||||||
|
String title = System.getProperty("application.name");
|
||||||
|
if (title != null) {
|
||||||
|
this.setTitle(title);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public SinglePanelFrame publish(Transferable transferable) {
|
public SinglePanelFrame publish(Transferable transferable) {
|
||||||
|
Loading…
Reference in New Issue
Block a user