Warning: session_start(): open(/var/lib/php/sessions/sess_la9ej44fuvetk82gqo3tco6ios, 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
static JLabel showSuggestion_current;
sbool showSuggestion_keyListenerInstalled;
// action is called in new thread
static JLabel showSuggestion_master(fS suggestionText, fO action) {
hideSuggestion();
final JLabel label = showSuggestion_individual(suggestionText, action);
JButton btnOK = firstButton(getWindow(label));
setText(btnOK, getText(btnOK) + appendBracketed(hotKey_teach());
showSuggestion_current = label;
showSuggestion_installHotkey();
ret label;
}
svoid showSuggestion_installHotkey {
if (showSuggestion_keyListenerInstalled) ret;
showSuggestion_keyListenerInstalled = true;
onGlobalHotKey(hotKey_teach(), r-awt {
if (isComponentShowing(showSuggestion_current))
clickFirstButton(getWindow(showSuggestion_current));
});
}