mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-10-11 09:03:40 +02:00
2021-07-08 Fred Gleason <fredg@paravelsystems.com>
* Added a branding bug to rdairplay(1). Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
@@ -34,6 +34,11 @@
|
||||
|
||||
#include "rdairplay.h"
|
||||
|
||||
//
|
||||
// Graphics
|
||||
//
|
||||
#include "../icons/bug-138x60.xpm"
|
||||
|
||||
//
|
||||
// Prototypes
|
||||
//
|
||||
@@ -435,6 +440,15 @@ MainWidget::MainWidget(RDConfig *config,QWidget *parent)
|
||||
air_copy_button->setFocusPolicy(Qt::NoFocus);
|
||||
connect(air_copy_button,SIGNAL(clicked()),this,SLOT(copyButtonData()));
|
||||
|
||||
//
|
||||
// Bug
|
||||
//
|
||||
QPixmap *bug=new QPixmap(bug_138x60_xpm);
|
||||
air_bug_label=new QLabel(this);
|
||||
air_bug_label->setScaledContents(true);
|
||||
air_bug_label->setPixmap(*bug);
|
||||
delete bug;
|
||||
|
||||
//
|
||||
// Sound Panel Array
|
||||
//
|
||||
@@ -2060,6 +2074,7 @@ void MainWidget::resizeEvent(QResizeEvent *e)
|
||||
air_move_button->setGeometry(190,h-65,80,60);
|
||||
air_copy_button->setGeometry(280,h-65,80,60);
|
||||
|
||||
air_bug_label->setGeometry(370,h-65,138,60);
|
||||
air_empty_cart->setGeometry(520,h-51,32,32);
|
||||
|
||||
int xpos=562;
|
||||
|
Reference in New Issue
Block a user