Commit 139a3929 authored by Filippo Carone's avatar Filippo Carone

jvlcpanel constructor added

parent 0f857561
......@@ -42,6 +42,15 @@ public class JVLCPanel extends JPanel {
jvcc = new JVLCCanvas();
add(jvcc);
}
/**
* @param args Arguments to initialize JVLC
*/
public JVLCPanel(String[] args)
{
jvcc = new JVLCCanvas(args);
add(jvcc);
}
/**
* @param width The width of the panel
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment