mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
Client start up time speed up: don't check for new images by default
This commit is contained in:
parent
a5598c3c4b
commit
cd7b0f5b08
1 changed files with 1 additions and 1 deletions
|
@ -318,7 +318,7 @@ public class MageFrame extends javax.swing.JFrame implements MageClient {
|
|||
@Override
|
||||
public void run() {
|
||||
disableButtons();
|
||||
if (PreferencesDialog.getCachedValue(PreferencesDialog.KEY_CARD_IMAGES_CHECK, "true").equals("true")) {
|
||||
if (PreferencesDialog.getCachedValue(PreferencesDialog.KEY_CARD_IMAGES_CHECK, "false").equals("true")) {
|
||||
checkForNewImages();
|
||||
}
|
||||
logger.info("Client start up time: " + ((System.currentTimeMillis() - startTime) / 1000 + " seconds"));
|
||||
|
|
Loading…
Reference in a new issue