From af218cc4e1b550f2cbb06ef1bef049568a19a608 Mon Sep 17 00:00:00 2001 From: Adrien Destugues Date: Tue, 25 Nov 2014 08:50:47 +0100 Subject: [PATCH] Notifications default to enabled on first boot. * The server did this right, but the preflet would not check the checkbox when there was no settings file. --- headers/private/notification/Notifications.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/headers/private/notification/Notifications.h b/headers/private/notification/Notifications.h index 9d19204af9..eb4ca737e1 100644 --- a/headers/private/notification/Notifications.h +++ b/headers/private/notification/Notifications.h @@ -1,5 +1,5 @@ /* - * Copyright 2010, Haiku, Inc. All Rights Reserved. + * Copyright 2010-2014, Haiku, Inc. All Rights Reserved. * Distributed under the terms of the MIT License. */ #ifndef _NOTIFICATIONS_H @@ -10,7 +10,7 @@ #define kNotificationServerSignature "application/x-vnd.Haiku-notification_server" // Messages -const uint32 kNotificationMessage = 'nssm'; +const uint32 kNotificationMessage = 'nssm'; // Settings constants extern const char* kSettingsFile; @@ -20,8 +20,8 @@ extern const char* kAutoStartName; extern const char* kTimeoutName; // General default settings -const float kDefaultAutoStart = false; -const int32 kDefaultTimeout = 10; +const bool kDefaultAutoStart = true; +const int32 kDefaultTimeout = 10; // Display settings extern const char* kWidthName; @@ -29,7 +29,7 @@ extern const char* kIconSizeName; extern const char* kLayoutName; // Display default settings -const float kDefaultWidth = 300.0f; -const icon_size kDefaultIconSize = B_LARGE_ICON; +const float kDefaultWidth = 300.0f; +const icon_size kDefaultIconSize = B_LARGE_ICON; #endif // _NOTIFICATIONS_H