Skip to content

Commit

Permalink
docs: cleanup UI (#55)
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmueller committed Feb 16, 2021
1 parent f74c442 commit 4481a8f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
3 changes: 2 additions & 1 deletion shapeout2/gui/compute/comp_lme4_results.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import pathlib
import pkg_resources

import dclab
from PyQt5 import uic, QtCore, QtGui, QtWidgets


Expand All @@ -15,7 +16,7 @@ def __init__(self, parent, rlme4_results, *args, **kwargs):

# parameters
self.label_model.setText(res["model"])
self.label_feature.setText(res["feature"])
self.label_feature.setText(dclab.dfn.get_feature_label(res["feature"]))
if res["is differential"]:
self.label_differential.setText("Yes")
else:
Expand Down
2 changes: 1 addition & 1 deletion shapeout2/gui/compute/comp_lme4_results.ui
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</rect>
</property>
<property name="windowTitle">
<string>Dialog</string>
<string>R-lme4 results</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<item>
Expand Down
5 changes: 3 additions & 2 deletions shapeout2/gui/compute/comp_stats.ui
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,11 @@
</rect>
</property>
<property name="windowTitle">
<string>Compute and export statistics</string>
<string>Compute and export statistical data</string>
</property>
<property name="windowIcon">
<iconset theme="view-statistics"/>
<iconset theme="view-statistics">
<normaloff>.</normaloff>.</iconset>
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<item>
Expand Down
2 changes: 1 addition & 1 deletion shapeout2/gui/preferences.ui
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<item>
<widget class="QTabWidget" name="tabWidget">
<property name="currentIndex">
<number>2</number>
<number>0</number>
</property>
<widget class="QWidget" name="tab_general">
<attribute name="title">
Expand Down

0 comments on commit 4481a8f

Please sign in to comment.