Put Amplitude and Time Up/Down arrows back in rdlibrary(1).

This commit is contained in:
Patrick Linstruth 2018-11-26 15:52:18 -08:00
parent 4220a2c9d4
commit 1340b1a7a1
9 changed files with 18 additions and 26 deletions

View File

@ -18064,3 +18064,5 @@
* Optimized RDAudioPort SQL queries.
2018-11-26 Patrick Linstruth <patrick@deltecent.com>
* Fixed bug where requested port could overrun HPI_MAX_NODES.
2018-11-26 Patrick Linstruth <patrick@deltecent.com>
* Put Amplitude and Time Up/Down arrows back in rdlibrary(1).

View File

@ -1405,12 +1405,12 @@ vozík</translation>
<message>
<source>Zoom
In</source>
<translation type="unfinished">Přiblížit</translation>
<translation type="obsolete">Přiblížit</translation>
</message>
<message>
<source>Zoom
Out</source>
<translation type="unfinished">Oddálit</translation>
<translation type="obsolete">Oddálit</translation>
</message>
<message>
<source>Time</source>

View File

@ -1395,12 +1395,12 @@ Cart</source>
<message>
<source>Zoom
In</source>
<translation type="unfinished">hineinzoomen</translation>
<translation type="obsolete">hineinzoomen</translation>
</message>
<message>
<source>Zoom
Out</source>
<translation type="unfinished">herauszoomen</translation>
<translation type="obsolete">herauszoomen</translation>
</message>
<message>
<source>Time</source>

View File

@ -1396,13 +1396,13 @@ Cartucho</translation>
<message>
<source>Zoom
In</source>
<translation type="unfinished">Acercar
<translation type="obsolete">Acercar
Zoom</translation>
</message>
<message>
<source>Zoom
Out</source>
<translation type="unfinished">Alejar
<translation type="obsolete">Alejar
Zoom</translation>
</message>
<message>

View File

@ -1458,16 +1458,6 @@ Are you sure you want to save?</source>
Are you sure you want to save?</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Zoom
In</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Zoom
Out</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>RDEditPanelName</name>

View File

@ -1394,13 +1394,13 @@ Cart</source>
<message>
<source>Zoom
In</source>
<translation type="unfinished">Zoom
<translation type="obsolete">Zoom
inn</translation>
</message>
<message>
<source>Zoom
Out</source>
<translation type="unfinished">Zoom
<translation type="obsolete">Zoom
ut</translation>
</message>
<message>

View File

@ -1394,13 +1394,13 @@ Cart</source>
<message>
<source>Zoom
In</source>
<translation type="unfinished">Zoom
<translation type="obsolete">Zoom
inn</translation>
</message>
<message>
<source>Zoom
Out</source>
<translation type="unfinished">Zoom
<translation type="obsolete">Zoom
ut</translation>
</message>
<message>

View File

@ -1396,13 +1396,13 @@ Cartão</translation>
<message>
<source>Zoom
In</source>
<translation type="unfinished">Zoom
<translation type="obsolete">Zoom
In</translation>
</message>
<message>
<source>Zoom
Out</source>
<translation type="unfinished">Zoom
<translation type="obsolete">Zoom
Out</translation>
</message>
<message>

View File

@ -210,11 +210,11 @@ RDEditAudio::RDEditAudio(RDCart *cart,QString cut_name,int card,
QGroupBox *group_box=new QGroupBox(tr("Amplitude"),this);
group_box->setGeometry(739,2,85,130);
group_box->setFont(label_font);
QPushButton *y_up_button=new QPushButton(tr("Zoom\nIn"),this);
QPushButton *y_up_button=new RDTransportButton(RDTransportButton::Up,this);
y_up_button->setGeometry(747,22,70,50);
y_up_button->setFont(button_font);
connect(y_up_button,SIGNAL(clicked()),this,SLOT(yUp()));
QPushButton *y_down_button=new QPushButton(tr("Zoom\nOut"),this);
QPushButton *y_down_button=new RDTransportButton(RDTransportButton::Down,this);
y_down_button->setGeometry(747,72,70,50);
y_down_button->setFont(button_font);
connect(y_down_button,SIGNAL(clicked()),this,SLOT(yDown()));
@ -230,11 +230,11 @@ RDEditAudio::RDEditAudio(RDCart *cart,QString cut_name,int card,
x_full_in_button->setFont(button_font);
x_full_in_button->setText(tr("Full\nIn"));
connect(x_full_in_button,SIGNAL(clicked()),this,SLOT(xFullIn()));
QPushButton *x_up_button=new QPushButton(tr("Zoom\nIn"),this);
QPushButton *x_up_button=new RDTransportButton(RDTransportButton::Up,this);
x_up_button->setGeometry(747,212,70,50);
x_up_button->setFont(button_font);
connect(x_up_button,SIGNAL(clicked()),this,SLOT(xUp()));
QPushButton *x_down_button=new QPushButton(tr("Zoom\nOut"),this);
QPushButton *x_down_button=new RDTransportButton(RDTransportButton::Down,this);
x_down_button->setGeometry(747,262,70,50);
x_down_button->setFont(button_font);
connect(x_down_button,SIGNAL(clicked()),this,SLOT(xDown()));