[pim/korganizer] /: Agenda View: allow showing incidence description in the agenda items
Allen Winter
null at kde.org
Mon Apr 27 17:01:01 BST 2026
Git commit a083d211b73169d88c8d977a52ab19053a30f8a3 by Allen Winter.
Committed on 27/04/2026 at 15:40.
Pushed by winterz into branch 'master'.
Agenda View: allow showing incidence description in the agenda items
BUG: 364968
FIXED-IN: 6.8.0
M +1 -1 CMakeLists.txt
M +5 -0 doc/index.docbook
M +1 -0 src/prefs/koprefsdialogviews.cpp
M +6 -0 src/settings/korganizer.kcfg
M +2 -1 src/whatsnew/whatsnewtranslations.cpp
https://invent.kde.org/pim/korganizer/-/commit/a083d211b73169d88c8d977a52ab19053a30f8a3
diff --git a/CMakeLists.txt b/CMakeLists.txt
index eb64c4de1..26d779f88 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -149,7 +149,7 @@ set(PIMCOMMON_LIB_VERSION "6.7.40")
set(LIBKDEPIM_LIB_VERSION "6.7.40")
set(LIBINCIDENCEEDITOR_LIB_VERSION "6.7.40")
set(CALENDARSUPPORT_LIB_VERSION "6.7.41")
-set(EVENTVIEW_LIB_VERSION "6.7.44")
+set(EVENTVIEW_LIB_VERSION "6.7.45")
# Find KF6 package
find_package(KF6I18n ${KF_MIN_VERSION} CONFIG REQUIRED)
diff --git a/doc/index.docbook b/doc/index.docbook
index 145fb3c57..6e19d3a3c 100644
--- a/doc/index.docbook
+++ b/doc/index.docbook
@@ -2245,6 +2245,11 @@ in Agenda view items</para></listitem>
<listitem><para>Check this box to display the incidence descriptions in agenda view items.</para></listitem>
</varlistentry>
+<varlistentry>
+ <term><guilabel>Show incidence locations in agenda view items</guilabel></term>
+ <listitem><para>Check this box to display the incidence locations in agenda view items.</para></listitem>
+</varlistentry>
+
<varlistentry>
<term><guilabel>Show to-dos</guilabel></term>
<listitem><para>This check box toggles the display of to-dos in the Day, Week
diff --git a/src/prefs/koprefsdialogviews.cpp b/src/prefs/koprefsdialogviews.cpp
index cb9f801a5..16e686208 100644
--- a/src/prefs/koprefsdialogviews.cpp
+++ b/src/prefs/koprefsdialogviews.cpp
@@ -100,6 +100,7 @@ KOPrefsDialogViews::KOPrefsDialogViews(QObject *parent, const KPluginMetaData &d
adisplayLayout->addWidget(addWidBool(KOPrefs::instance()->enableAgendaItemIconsItem())->checkBox());
adisplayLayout->addWidget(addWidBool(KOPrefs::instance()->enableAgendaBoldEvenHoursItem())->checkBox());
adisplayLayout->addWidget(addWidBool(KOPrefs::instance()->enableAgendaItemDescItem())->checkBox());
+ adisplayLayout->addWidget(addWidBool(KOPrefs::instance()->enableAgendaItemLocationItem())->checkBox());
adisplayLayout->addWidget(addWidBool(KOPrefs::instance()->showTodosAgendaViewItem())->checkBox());
Korganizer::KPrefsWidBool *marcusBainsEnabled = addWidBool(KOPrefs::instance()->marcusBainsEnabledItem());
adisplayLayout->addWidget(marcusBainsEnabled->checkBox());
diff --git a/src/settings/korganizer.kcfg b/src/settings/korganizer.kcfg
index 242711d67..a8a929c6b 100644
--- a/src/settings/korganizer.kcfg
+++ b/src/settings/korganizer.kcfg
@@ -132,6 +132,12 @@
<tooltip>Display incidence descriptions agenda view items</tooltip>
<default>false</default>
</entry>
+ <entry type="Bool" key="Show Incidence Locationss in Agenda View" name="EnableAgendaItemLocation">
+ <label>Show incidence locations in agenda view items</label>
+ <whatsthis>Check this box to display the incidence locations in agenda view items.</whatsthis>
+ <tooltip>Display incidence locations agenda view items</tooltip>
+ <default>false</default>
+ </entry>
<entry type="Bool" name="ShowTodosAgendaView">
<label>Show to-dos</label>
<whatsthis>Check this box to display to-dos in the agenda view.</whatsthis>
diff --git a/src/whatsnew/whatsnewtranslations.cpp b/src/whatsnew/whatsnewtranslations.cpp
index 9ad619386..4b211b87a 100644
--- a/src/whatsnew/whatsnewtranslations.cpp
+++ b/src/whatsnew/whatsnewtranslations.cpp
@@ -28,7 +28,8 @@ QList<KLazyLocalizedString> WhatsNewTranslations::lastNewFeatures() const
"that date. To enable this behavior, check the \"Use the Holiday background color when at least on holiday lands on a date\" option "
"in the Views->Month View tab"),
kli18n("Agenda view: underline today's column header date"),
-
+ kli18n("Agenda view: optionally show the incidence locations inside the agenda items. To enable this behavior, check the \"Show incidence "
+ "locations in agenda view items\" option in the View->Agenda View tab"),
};
return info;
More information about the kde-doc-english
mailing list