[gnome-music/wip/mschraal/gtk4-v3: 109/192] ui/artisttile: Use focusable property instead of can-focus




commit dcd53324da50041c7a211d6992264266183e10f6
Author: Jean Felder <jfelder src gnome org>
Date:   Thu Feb 3 06:12:10 2022 +0100

    ui/artisttile: Use focusable property instead of can-focus
    
    The can-focus property has been renamed to focusable in Gtk4 and the
    new can-focus property means that the focus cannot enter the widget or
    any of its descendents.

 data/ui/ArtistTile.ui | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/data/ui/ArtistTile.ui b/data/ui/ArtistTile.ui
index bd1ee8216..02508bf79 100644
--- a/data/ui/ArtistTile.ui
+++ b/data/ui/ArtistTile.ui
@@ -1,19 +1,19 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <interface>
   <template class="ArtistTile" parent="GtkListBoxRow">
-    <property name="can_focus">False</property>
+    <property name="focusable">False</property>
     <child>
       <object class="GtkBox">
         <property name="orientation">horizontal</property>
         <property name="margin-start">10</property>
         <child>
           <object class="ArtStack" id="_art_stack">
-            <property name="can_focus">False</property>
+            <property name="focusable">False</property>
           </object>
         </child>
         <child>
           <object class="GtkLabel" id="_label">
-            <property name="can_focus">False</property>
+            <property name="focusable">False</property>
             <property name="ellipsize">end</property>
             <property name="halign">start</property>
             <property name="hexpand">False</property>


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]