Skip to content
Snippets Groups Projects
Commit 5506aaad authored by Stéphane Albert's avatar Stéphane Albert
Browse files

BUG: MANTIS-1267: Added common default values for I18nCoreApplication::SettingsKey.

parent db6555ad
No related branches found
No related tags found
No related merge requests found
......@@ -145,6 +145,20 @@ extern
char const * const
EFFECT_NAMES[ EFFECT_COUNT ];
/**
*/
OTBMonteverdiCore_EXPORT
extern
bool
OVERVIEWS_ENABLED_DEFAULT;
/**
*/
OTBMonteverdiCore_EXPORT
extern
int
OVERVIEWS_SIZE_DEFAULT;
} // end of namespace mvd.
......
......@@ -92,6 +92,12 @@ EFFECT_NAMES[ EFFECT_COUNT ] =
QT_TRANSLATE_NOOP( "mvd", "Swipe (vertical)" ),
};
bool
OVERVIEWS_ENABLED_DEFAULT = true;
int
OVERVIEWS_SIZE_DEFAULT = 512;
/*****************************************************************************/
/* STATIC IMPLEMENTATION SECTION */
......
......@@ -97,7 +97,9 @@ enum Resolution
RESOLUTION_LOWER,
RESOLUTION_UPPER,
//
RESOLUTION_COUNT
RESOLUTION_COUNT,
//
RESOLUTION_DEFAULT = RESOLUTION_NEAREST,
};
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment