Fix tree iter usage, Add COVID-19 option, Copyright + project lead
This commit is contained in:
parent
85bb67a838
commit
73dedcd281
|
@ -440,8 +440,9 @@ class ClientConfig:
|
|||
# Selected the first item if nothing is selected
|
||||
if selected_row is None:
|
||||
selected_row = app.slot_status_list.get_iter_first()
|
||||
app.slot_status_tree.get_selection().select_iter(selected_row)
|
||||
self.select_slot(app)
|
||||
if selected_row is not None:
|
||||
app.slot_status_tree.get_selection().select_iter(selected_row)
|
||||
self.select_slot(app)
|
||||
if log_filter_row is None:
|
||||
log_filter_row = app.slot_status_list.get_iter_first()
|
||||
|
||||
|
|
|
@ -108,7 +108,7 @@
|
|||
<object class="GtkLabel" id="label39">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="label" translatable="yes">Copyright © 2010-2018 foldingathome.org</property>
|
||||
<property name="label" translatable="yes">Copyright © 2010-2020 foldingathome.org</property>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="expand">False</property>
|
||||
|
@ -207,8 +207,8 @@
|
|||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="label" translatable="yes"><b>Project Leader</b>
|
||||
Dr. Vijay Pande
|
||||
Stanford University</property>
|
||||
Dr. Gregory Bowman
|
||||
Washington State University in Saint Louis</property>
|
||||
<property name="use_markup">True</property>
|
||||
<property name="justify">center</property>
|
||||
</object>
|
||||
|
@ -310,6 +310,10 @@ Joe Heimann, jheimann</property>
|
|||
<col id="0" translatable="yes">ANY</col>
|
||||
<col id="1" translatable="yes">Any</col>
|
||||
</row>
|
||||
<row>
|
||||
<col id="0" translatable="yes">COVID_19</col>
|
||||
<col id="1" translatable="yes">COVID-19</col>
|
||||
</row>
|
||||
<row>
|
||||
<col id="0" translatable="yes">ALZHEIMERS</col>
|
||||
<col id="1" translatable="yes">Alzheimer's</col>
|
||||
|
@ -326,6 +330,10 @@ Joe Heimann, jheimann</property>
|
|||
<col id="0" translatable="yes">PARKINSONS</col>
|
||||
<col id="1" translatable="yes">Parkinson's</col>
|
||||
</row>
|
||||
<row>
|
||||
<col id="0" translatable="yes">HIGH_PRIORITY</col>
|
||||
<col id="1" translatable="yes">High priority</col>
|
||||
</row>
|
||||
</data>
|
||||
</object>
|
||||
<object class="GtkAdjustment" id="checkpoint_adjustment">
|
||||
|
|
Loading…
Reference in New Issue