diff options
Diffstat (limited to 'src/gtk/task_row.ui')
-rwxr-xr-x | src/gtk/task_row.ui | 34 |
1 files changed, 25 insertions, 9 deletions
diff --git a/src/gtk/task_row.ui b/src/gtk/task_row.ui index edd2899..f5de3a5 100755 --- a/src/gtk/task_row.ui +++ b/src/gtk/task_row.ui @@ -2,7 +2,7 @@ <interface> <template class="FurTaskRow" parent="GtkListBoxRow"> <child> - <object class="GtkBox"> + <object class="GtkBox" id="row_box"> <property name="orientation">horizontal</property> <property name="margin_top">10</property> <property name="margin_bottom">10</property> @@ -13,14 +13,30 @@ <property name="valign">center</property> <property name="homogeneous">True</property> <child> - <object class="GtkLabel" id="task_name_label"> - <property name="halign">start</property> - <property name="label" translatable="yes">Task</property> - <property name="ellipsize">end</property> - <property name="single_line_mode">True</property> - <style> - <class name="heading"/> - </style> + <object class="GtkBox"> + <property name="orientation">vertical</property> + <property name="spacing">3</property> + <child> + <object class="GtkLabel" id="task_name_label"> + <property name="halign">start</property> + <property name="label" translatable="yes">Task</property> + <property name="ellipsize">end</property> + <property name="single_line_mode">True</property> + <style> + <class name="heading"/> + </style> + </object> + </child> + <child> + <object class="GtkLabel" id="task_tags_label"> + <property name="halign">start</property> + <property name="ellipsize">end</property> + <property name="single_line_mode">True</property> + <style> + <class name="subtitle"/> + </style> + </object> + </child> </object> </child> <child> |