Hello community, here is the log from the commit of package konsole for openSUSE:Factory checked in at 2016-09-25 14:29:35 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/konsole (Old) and /work/SRC/openSUSE:Factory/.konsole.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "konsole" Changes: -------- --- /work/SRC/openSUSE:Factory/konsole/konsole.changes 2016-09-14 23:14:08.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.konsole.new/konsole.changes 2016-09-25 14:29:36.000000000 +0200 @@ -1,0 +2,6 @@ +Fri Sep 23 10:49:10 UTC 2016 - [email protected] + +- Add Fix-updating-of-tab-title.patch to update the tab title to + the current program running again (boo#1000641, kde#368785) + +------------------------------------------------------------------- New: ---- Fix-updating-of-tab-title.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ konsole.spec ++++++ --- /var/tmp/diff_new_pack.rtjlYH/_old 2016-09-25 14:29:37.000000000 +0200 +++ /var/tmp/diff_new_pack.rtjlYH/_new 2016-09-25 14:29:37.000000000 +0200 @@ -32,6 +32,8 @@ Source24: utilities-terminal-su-48.png Source25: utilities-terminal-su-64.png Source26: utilities-terminal-su-128.png +# PATCH-FIX-UPSTREAM Fix-updating-of-tab-title.patch boo#1000641, kde#368785 -- Update the tab title to current program running +Patch: Fix-updating-of-tab-title.patch BuildRequires: fdupes BuildRequires: kbookmarks-devel BuildRequires: kconfig-devel @@ -79,6 +81,7 @@ %prep %setup -q +%patch -p1 %build %cmake_kf5 -d build ++++++ Fix-updating-of-tab-title.patch ++++++ From: Kurt Hindenburg <[email protected]> Date: Sat, 17 Sep 2016 16:40:54 +0000 Subject: Fix updating of tab title X-Git-Url: http://quickgit.kde.org/?p=konsole.git&a=commitdiff&h=3747ecfde0800804717203d7f5fa0f96c0791052 --- Fix updating of tab title Update the tab title to current program running. Martin, this "if" was committed in 79ca76a94696eda408927b122b0b531676d4ba93. For now, I removed the "if" CCBUG: 368785 --- --- a/src/Session.cpp +++ b/src/Session.cpp @@ -992,9 +992,7 @@ ProcessInfo* process = 0; if (isForegroundProcessActive()) { - if (_foregroundProcessInfo == nullptr) { - updateForegroundProcessInfo(); - } + updateForegroundProcessInfo(); process = _foregroundProcessInfo; } else { updateSessionProcessInfo();
