Browse Source

Minor string changes

tags/v0.9.0
falkTX 11 years ago
parent
commit
b801c050f8
2 changed files with 9 additions and 9 deletions
  1. +8
    -8
      resources/ui/cadence.ui
  2. +1
    -1
      src/cadence.py

+ 8
- 8
resources/ui/cadence.ui View File

@@ -409,7 +409,7 @@
</sizepolicy>
</property>
<property name="text">
<string>Latency:</string>
<string>Block Latency:</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
@@ -572,7 +572,7 @@
<rect>
<x>0</x>
<y>0</y>
<width>359</width>
<width>360</width>
<height>100</height>
</rect>
</property>
@@ -720,7 +720,7 @@
<rect>
<x>0</x>
<y>0</y>
<width>359</width>
<width>360</width>
<height>97</height>
</rect>
</property>
@@ -861,7 +861,7 @@
<rect>
<x>0</x>
<y>0</y>
<width>359</width>
<width>360</width>
<height>97</height>
</rect>
</property>
@@ -1197,7 +1197,7 @@
<item>
<widget class="QLabel" name="label_tools_meter">
<property name="text">
<string>Digital peak meter, auto-connected to all system outputs</string>
<string>Digital peak meter, auto-connected to all system inputs or outputs</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
@@ -1718,7 +1718,7 @@
<rect>
<x>0</x>
<y>0</y>
<width>89</width>
<width>94</width>
<height>66</height>
</rect>
</property>
@@ -1748,7 +1748,7 @@
<rect>
<x>0</x>
<y>0</y>
<width>89</width>
<width>94</width>
<height>66</height>
</rect>
</property>
@@ -1778,7 +1778,7 @@
<rect>
<x>0</x>
<y>0</y>
<width>89</width>
<width>94</width>
<height>66</height>
</rect>
</property>


+ 1
- 1
src/cadence.py View File

@@ -1502,7 +1502,7 @@ class CadenceMainW(QMainWindow, ui_cadence.Ui_CadenceMainW):
systrayText += "<tr><td align='right'>%s:</td><td>%s</td></tr>" % (self.tr("Xruns"), self.label_jack_xruns.text())
systrayText += "<tr><td align='right'>%s:</td><td>%s</td></tr>" % (self.tr("Buffer Size"), self.label_jack_bfsize.text())
systrayText += "<tr><td align='right'>%s:</td><td>%s</td></tr>" % (self.tr("Sample Rate"), self.label_jack_srate.text())
systrayText += "<tr><td align='right'>%s:</td><td>%s</td></tr>" % (self.tr("Latency"), self.label_jack_latency.text())
systrayText += "<tr><td align='right'>%s:</td><td>%s</td></tr>" % (self.tr("Block Latency"), self.label_jack_latency.text())
systrayText += "</table>"

self.systray.setToolTip(systrayText)


Loading…
Cancel
Save