Warning: session_start(): open(/var/lib/php/sessions/sess_ua6mh5sjv980hnb5p8lhtcbv1t, 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(S text, O 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;
});
}
static JButton jThreadedButton(S text, Runnable action) {
ret jThreadedButton(text, (O) action);
}