Hello community,

here is the log from the commit of package gnome-music for openSUSE:Factory 
checked in at 2018-12-31 09:39:38
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/gnome-music (Old)
 and      /work/SRC/openSUSE:Factory/.gnome-music.new.28833 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "gnome-music"

Mon Dec 31 09:39:38 2018 rev:41 rq:661752 version:3.30.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/gnome-music/gnome-music.changes  2018-11-08 
09:44:33.309376695 +0100
+++ /work/SRC/openSUSE:Factory/.gnome-music.new.28833/gnome-music.changes       
2018-12-31 09:39:39.434547182 +0100
@@ -1,0 +2,7 @@
+Fri Dec 28 00:15:09 UTC 2018 - [email protected]
+
+- Add upstream bug fix patch:
+  + gnome-music-playlistview-Fix-playlist-renaming.patch:
+    playlistview: Fix playlist renaming.
+
+-------------------------------------------------------------------

New:
----
  gnome-music-playlistview-Fix-playlist-renaming.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ gnome-music.spec ++++++
--- /var/tmp/diff_new_pack.IY3J58/_old  2018-12-31 09:39:40.150546597 +0100
+++ /var/tmp/diff_new_pack.IY3J58/_new  2018-12-31 09:39:40.154546594 +0100
@@ -25,6 +25,8 @@
 URL:            https://www.gnome.org
 Source0:        
https://download.gnome.org/sources/gnome-music/3.30/%{name}-%{version}.tar.xz
 Source99:       %{name}-rpmlintrc
+# PATCH-FIX-UPSTREAM gnome-music-playlistview-Fix-playlist-renaming.patch -- 
playlistview: Fix playlist renaming
+Patch0:         gnome-music-playlistview-Fix-playlist-renaming.patch
 
 BuildRequires:  fdupes
 BuildRequires:  itstool

++++++ gnome-music-playlistview-Fix-playlist-renaming.patch ++++++
>From 36164dec1bcc9dd7b32bf8ee580a3170f64753fb Mon Sep 17 00:00:00 2001
From: Jean Felder <[email protected]>
Date: Fri, 30 Nov 2018 15:58:41 +0000
Subject: [PATCH] playlistview: Fix playlist renaming

Since the introduction of SidebarRow (commit a3ea4d04), playlist
renaming operation crashes. Indeed, selection is now a SidebarRow
instead of a GtkBox.
Update the correct GObject property to fix the issue.

Closes: #248


(cherry picked from commit e3ddd2084cabece016b5eb6a4fa0a70f940fd9a3)
---
 gnomemusic/views/playlistview.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnomemusic/views/playlistview.py b/gnomemusic/views/playlistview.py
index e285431f..d2a8b5c2 100644
--- a/gnomemusic/views/playlistview.py
+++ b/gnomemusic/views/playlistview.py
@@ -745,7 +745,7 @@ class PlaylistView(BaseView):
     @log
     def _on_playlist_renamed(self, arguments, new_name):
         selection = self._sidebar.get_selected_row()
-        selection.get_child().props.label = new_name
+        selection.props.text = new_name
 
         pl_torename = selection.playlist
         pl_torename.set_title(new_name)
-- 
2.18.1


Reply via email to