Skip to content
Snippets Groups Projects
Commit 0e383d3c authored by Bruce Cowan's avatar Bruce Cowan :airplane:
Browse files

Fix typing into score entry

parent fdec9f82
No related branches found
No related tags found
No related merge requests found
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!-- <!--
SPDX-FileCopyrightText: 2012-2021 Bruce Cowan <bruce@bcowan.me.uk> SPDX-FileCopyrightText: 2012-2021 Bruce Cowan <bruce@bcowan.me.uk>
SPDX-License-Identifier: GPL-3.0-or-later SPDX-License-Identifier: GPL-3.0-or-later
--> -->
<interface> <interface>
...@@ -8,7 +9,6 @@ ...@@ -8,7 +9,6 @@
<object class="GtkAdjustment" id="adjustment1"> <object class="GtkAdjustment" id="adjustment1">
<property name="upper">200</property> <property name="upper">200</property>
<property name="step_increment">1</property> <property name="step_increment">1</property>
<property name="page_increment">10</property>
</object> </object>
<menu id="menu"> <menu id="menu">
<section> <section>
...@@ -25,17 +25,14 @@ ...@@ -25,17 +25,14 @@
</section> </section>
</menu> </menu>
<template class="RugbyAppWindow" parent="GtkApplicationWindow"> <template class="RugbyAppWindow" parent="GtkApplicationWindow">
<property name="can_focus">0</property>
<property name="title" translatable="yes">Rugby</property> <property name="title" translatable="yes">Rugby</property>
<child> <child>
<object class="GtkScrolledWindow"> <object class="GtkScrolledWindow">
<property name="height_request">600</property> <property name="height_request">600</property>
<child> <child>
<object class="GtkViewport"> <object class="GtkViewport">
<property name="can_focus">0</property>
<child> <child>
<object class="GtkListBox" id="listbox"> <object class="GtkListBox" id="listbox">
<property name="can_focus">0</property>
<property name="selection_mode">none</property> <property name="selection_mode">none</property>
<style> <style>
<class name="rich-list"/> <class name="rich-list"/>
...@@ -56,17 +53,15 @@ ...@@ -56,17 +53,15 @@
</child> </child>
<child type="titlebar"> <child type="titlebar">
<object class="GtkHeaderBar"> <object class="GtkHeaderBar">
<property name="can_focus">0</property>
<child> <child>
<object class="GtkLabel"> <object class="GtkLabel">
<property name="can_focus">0</property>
<property name="label" translatable="yes">Score:</property> <property name="label" translatable="yes">Score:</property>
</object> </object>
</child> </child>
<child> <child>
<object class="GtkSpinButton" id="scorespin"> <object class="GtkSpinButton" id="scorespin">
<property name="text" translatable="yes">0</property>
<property name="adjustment">adjustment1</property> <property name="adjustment">adjustment1</property>
<property name="focusable">1</property>
</object> </object>
</child> </child>
<child type="end"> <child type="end">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment