}
}
private void showSettingsDialog()
{
SettingsDialog dlg = new SettingsDialog(this, _plugins);
int x = (int) this.getLocation().getX() + (this.getWidth() / 2) - (dlg.getWidth() / 2);
int y = (int) this.getLocation().getY() + (this.getHeight() / 2) - (dlg.getHeight() / 2);
dlg.setLocation(x, y);
}