use of io.videofirst.capture.exception.CaptureException in project vft-capture by videofirst.
the class VfCaptureUi method setUiLookAndFeel.
/**
* Set look and feel (needs to be done before application loads up).
*/
private void setUiLookAndFeel() {
try {
BasicLookAndFeel darcula = new DarculaLaf();
UIManager.setLookAndFeel(darcula);
} catch (UnsupportedLookAndFeelException ex) {
throw new CaptureException("Look and feel not supported");
}
}
Aggregations