mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-06-02 09:02:34 +02:00
2018-10-18 Fred Gleason <fredg@paravelsystems.com>
* Tweaked the position of buttons on the bottom row of the main screen of rdlibrary(1). * Changed the minimum size of the main screen of rdlibrary to 850x600.
This commit is contained in:
parent
a1ac4c77cd
commit
0ba8622147
@ -17828,3 +17828,8 @@
|
||||
2018-10-17 Patrick Linstruth <patrick@deltecent.com>
|
||||
* Fixed bug in rdservice(8) where local maintence process was started
|
||||
with RDSERVICE_SYSTEMMAINT_ID instead of RDSERVICE_LOCALMAINT_ID.
|
||||
2018-10-18 Fred Gleason <fredg@paravelsystems.com>
|
||||
* Tweaked the position of buttons on the bottom row of the main
|
||||
screen of rdlibrary(1).
|
||||
* Changed the minimum size of the main screen of rdlibrary to
|
||||
850x600.
|
||||
|
@ -521,7 +521,7 @@ MainWidget::MainWidget(QWidget *parent)
|
||||
|
||||
QSize MainWidget::sizeHint() const
|
||||
{
|
||||
return QSize(800,600);
|
||||
return QSize(850,600);
|
||||
}
|
||||
|
||||
|
||||
@ -1115,18 +1115,18 @@ void MainWidget::resizeEvent(QResizeEvent *e)
|
||||
lib_add_button->setGeometry(10,e->size().height()-60,80,50);
|
||||
lib_edit_button->setGeometry(100,e->size().height()-60,80,50);
|
||||
lib_delete_button->setGeometry(190,e->size().height()-60,80,50);
|
||||
disk_gauge->setGeometry(475,e->size().height()-55,
|
||||
e->size().width()-775,
|
||||
disk_gauge->sizeHint().height());
|
||||
lib_rip_button->
|
||||
setGeometry(e->size().width()-290,e->size().height()-60,80,50);
|
||||
lib_reports_button->
|
||||
setGeometry(e->size().width()-200,e->size().height()-60,80,50);
|
||||
lib_close_button->setGeometry(e->size().width()-90,e->size().height()-60,
|
||||
80,50);
|
||||
lib_macro_button->setGeometry(290,e->size().height()-60,80,50);
|
||||
lib_player->playButton()->setGeometry(290,e->size().height()-60,80,50);
|
||||
lib_player->stopButton()->setGeometry(380,e->size().height()-60,80,50);
|
||||
disk_gauge->setGeometry(475,e->size().height()-55,
|
||||
e->size().width()-765,
|
||||
disk_gauge->sizeHint().height());
|
||||
lib_rip_button->
|
||||
setGeometry(e->size().width()-280,e->size().height()-60,80,50);
|
||||
lib_reports_button->
|
||||
setGeometry(e->size().width()-190,e->size().height()-60,80,50);
|
||||
lib_close_button->setGeometry(e->size().width()-90,e->size().height()-60,
|
||||
80,50);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user