mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-12-18 16:42:54 +01:00
[Qt] add startup option to reset Qt settings
This commit is contained in:
@@ -202,7 +202,7 @@ public:
|
||||
void createPaymentServer();
|
||||
#endif
|
||||
/// Create options model
|
||||
void createOptionsModel();
|
||||
void createOptionsModel(bool resetSettings);
|
||||
/// Create main window
|
||||
void createWindow(const NetworkStyle *networkStyle);
|
||||
/// Create splash screen
|
||||
@@ -352,9 +352,9 @@ void BitcoinApplication::createPaymentServer()
|
||||
}
|
||||
#endif
|
||||
|
||||
void BitcoinApplication::createOptionsModel()
|
||||
void BitcoinApplication::createOptionsModel(bool resetSettings)
|
||||
{
|
||||
optionsModel = new OptionsModel();
|
||||
optionsModel = new OptionsModel(NULL, resetSettings);
|
||||
}
|
||||
|
||||
void BitcoinApplication::createWindow(const NetworkStyle *networkStyle)
|
||||
@@ -645,7 +645,7 @@ int main(int argc, char *argv[])
|
||||
qInstallMessageHandler(DebugMessageHandler);
|
||||
#endif
|
||||
// Load GUI settings from QSettings
|
||||
app.createOptionsModel();
|
||||
app.createOptionsModel(mapArgs.count("-resetguisettings") != 0);
|
||||
|
||||
// Subscribe to global signals from core
|
||||
uiInterface.InitMessage.connect(InitMessage);
|
||||
|
||||
Reference in New Issue
Block a user