Warning: session_start(): open(/var/lib/php/sessions/sess_pa75u8n3hpvd1m5gc7afr3sshj, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51
Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
// action can be Runnable or a function name
static JButton jThreadedButton(fS text, fO action) {
ret swing(func -> JButton {
S text2 = dropPrefix("[disabled] ", text);
JButton btn = basicJButton(text2);
if (l(text2) < l(text)) btn.setEnabled(false);
btn.setToolTipText(btn.getText());
if (action != null)
btn.addActionListener(actionListenerInNewThread(action, btn));
ret btn;
});
}