Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package gnote for openSUSE:Factory checked in at 2021-10-05 22:34:00 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/gnote (Old) and /work/SRC/openSUSE:Factory/.gnote.new.2443 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gnote" Tue Oct 5 22:34:00 2021 rev:78 rq:923231 version:41.0 Changes: -------- --- /work/SRC/openSUSE:Factory/gnote/gnote.changes 2021-09-27 20:09:14.926484613 +0200 +++ /work/SRC/openSUSE:Factory/.gnote.new.2443/gnote.changes 2021-10-05 22:34:29.422935932 +0200 @@ -1,0 +2,6 @@ +Mon Oct 4 08:12:17 UTC 2021 - Dominique Leuenberger <dims...@opensuse.org> + +- Add 2a6b5aa.patch: Fix search box focus when very first search + in window is in note (boo#1191141). + +------------------------------------------------------------------- New: ---- 2a6b5aa.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ gnote.spec ++++++ --- /var/tmp/diff_new_pack.vlFVbk/_old 2021-10-05 22:34:29.850936677 +0200 +++ /var/tmp/diff_new_pack.vlFVbk/_new 2021-10-05 22:34:29.850936677 +0200 @@ -27,7 +27,8 @@ URL: https://wiki.gnome.org/Apps/Gnote Source0: https://download.gnome.org/sources/gnote/41/%{name}-%{version}.tar.xz Source99: gnote-rpmlintrc - +# PATCH-FIX-UPSTREAM 2a6b5aa.patch boo#1191141 dims...@opensuse.org -- Fix search box focus when very first search in window is in note. +Patch0: https://gitlab.gnome.org/GNOME/gnote/-/commit/2a6b5aa.patch BuildRequires: desktop-file-utils BuildRequires: fdupes BuildRequires: gcc-c++ ++++++ 2a6b5aa.patch ++++++ >From 2a6b5aa4a5ebc1390854e252a6129203f2fad47c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aurimas=20=C4=8Cernius?= <auri...@gmail.com> Date: Sun, 3 Oct 2021 21:05:37 +0300 Subject: [PATCH] Fix search box focus when very first search in window is in note. Fixes https://gitlab.gnome.org/GNOME/gnote/-/issues/108 --- src/recentchanges.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/recentchanges.cpp b/src/recentchanges.cpp index e2a0847b..34ef6d4f 100644 --- a/src/recentchanges.cpp +++ b/src/recentchanges.cpp @@ -258,7 +258,6 @@ namespace gnote { m_search_box->set_hexpand(false); m_search_box->attach(*m_search_entry, 0, 0, 1, 1); m_search_box->set_halign(Gtk::ALIGN_CENTER); - m_search_box->show(); auto content = dynamic_cast<Gtk::Grid*>(m_embed_box.get_parent()); if(content) { -- GitLab