mirror of
https://github.com/magefree/mage.git
synced 2025-12-27 22:12:03 -08: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
|
@Override
|
||||||
public void run() {
|
public void run() {
|
||||||
disableButtons();
|
disableButtons();
|
||||||
if (PreferencesDialog.getCachedValue(PreferencesDialog.KEY_CARD_IMAGES_CHECK, "true").equals("true")) {
|
if (PreferencesDialog.getCachedValue(PreferencesDialog.KEY_CARD_IMAGES_CHECK, "false").equals("true")) {
|
||||||
checkForNewImages();
|
checkForNewImages();
|
||||||
}
|
}
|
||||||
logger.info("Client start up time: " + ((System.currentTimeMillis() - startTime) / 1000 + " seconds"));
|
logger.info("Client start up time: " + ((System.currentTimeMillis() - startTime) / 1000 + " seconds"));
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue