Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
PIM
KAlarm
Commits
3ef411b1
Commit
3ef411b1
authored
Oct 15, 2019
by
David Jarvie
Browse files
Fix layout of defer alarm dialog
parent
7bf0706c
Changes
2
Show whitespace changes
Inline
Side-by-side
Changelog
View file @
3ef411b1
KAlarm Change Log
KAlarm Change Log
=== Version 2.12.8 (KDE Applications 19.08.3) --- 1
0
October 2019 ===
=== Version 2.12.8 (KDE Applications 19.08.3) --- 1
5
October 2019 ===
+ Fix error on redo of an active alarm deletion.
+ Fix error on redo of an active alarm deletion.
+ Archive repeat-at-login alarms if previously triggered, when they are deleted.
+ Archive repeat-at-login alarms if previously triggered, when they are deleted.
+ Fix layout of defer alarm dialogue.
=== Version 2.12.7 (KDE Applications 19.08.2) --- 7 October 2019 ===
=== Version 2.12.7 (KDE Applications 19.08.2) --- 7 October 2019 ===
+ Show correct read-only status of an alarm in its context menu.
+ Show correct read-only status of an alarm in its context menu.
...
...
src/deferdlg.cpp
View file @
3ef411b1
/*
/*
* deferdlg.cpp - dialog to defer an alarm
* deferdlg.cpp - dialog to defer an alarm
* Program: kalarm
* Program: kalarm
* Copyright © 2002-201
2 by
David Jarvie <djarvie@kde.org>
* Copyright © 2002-201
9
David Jarvie <djarvie@kde.org>
*
*
* This program is free software; you can redistribute it and/or modify
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* it under the terms of the GNU General Public License as published by
...
@@ -46,7 +46,6 @@ DeferAlarmDlg::DeferAlarmDlg(const DateTime& initialDT, bool anyTimeOption, bool
...
@@ -46,7 +46,6 @@ DeferAlarmDlg::DeferAlarmDlg(const DateTime& initialDT, bool anyTimeOption, bool
setWindowTitle
(
i18nc
(
"@title:window"
,
"Defer Alarm"
));
setWindowTitle
(
i18nc
(
"@title:window"
,
"Defer Alarm"
));
QVBoxLayout
*
layout
=
new
QVBoxLayout
(
this
);
QVBoxLayout
*
layout
=
new
QVBoxLayout
(
this
);
layout
->
setContentsMargins
(
0
,
0
,
0
,
0
);
layout
->
setSpacing
(
style
()
->
pixelMetric
(
QStyle
::
PM_DefaultLayoutSpacing
));
layout
->
setSpacing
(
style
()
->
pixelMetric
(
QStyle
::
PM_DefaultLayoutSpacing
));
mTimeWidget
=
new
AlarmTimeWidget
((
anyTimeOption
?
AlarmTimeWidget
::
DEFER_ANY_TIME
:
AlarmTimeWidget
::
DEFER_TIME
),
this
);
mTimeWidget
=
new
AlarmTimeWidget
((
anyTimeOption
?
AlarmTimeWidget
::
DEFER_ANY_TIME
:
AlarmTimeWidget
::
DEFER_TIME
),
this
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment