mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-06-07 07:32:34 +02:00
Fixed conflict in 'ChangeLog'
This commit is contained in:
commit
18fc166128
@ -18420,3 +18420,5 @@
|
||||
2019-01-25 Patrick Linstruth <patrick@deltecent.com>
|
||||
* Reduced size of PyPAD edit window in rdadmin(1) to match
|
||||
rdairplay(1).
|
||||
2019-01-25 Patrick Linstruth <patrick@deltecent.com>
|
||||
* Fixed regression with RDTransportButton taking focus from lists.
|
||||
|
@ -41,6 +41,7 @@ RDTransportButton::RDTransportButton(RDTransportButton::TransType type,
|
||||
off_cap=new QPixmap();
|
||||
drawOffCap();
|
||||
setPixmap(*off_cap);
|
||||
setFocusPolicy(Qt::NoFocus);
|
||||
|
||||
flash_timer=new QTimer(this,"flash_timer");
|
||||
connect(flash_timer,SIGNAL(timeout()),this,SLOT(flashClock()));
|
||||
|
@ -472,16 +472,6 @@ void ImportListView::contentsMouseDoubleClickEvent(QMouseEvent *e)
|
||||
}
|
||||
|
||||
|
||||
void ImportListView::focusOutEvent(QFocusEvent *e)
|
||||
{
|
||||
Q3ListViewItem *item=selectedItem();
|
||||
if(item==NULL) {
|
||||
return;
|
||||
}
|
||||
setSelected(item,false);
|
||||
}
|
||||
|
||||
|
||||
void ImportListView::dragEnterEvent(QDragEnterEvent *e)
|
||||
{
|
||||
e->accept(RDCartDrag::canDecode(e));
|
||||
|
@ -61,7 +61,6 @@ class ImportListView : public Q3ListView
|
||||
protected:
|
||||
void contentsMousePressEvent(QMouseEvent *e);
|
||||
void contentsMouseDoubleClickEvent(QMouseEvent *e);
|
||||
void focusOutEvent(QFocusEvent *e);
|
||||
void dragEnterEvent(QDragEnterEvent *e);
|
||||
void dropEvent(QDropEvent *e);
|
||||
|
||||
|
@ -29,16 +29,6 @@ LibListView::LibListView(QWidget *parent)
|
||||
}
|
||||
|
||||
|
||||
void LibListView::focusOutEvent(QFocusEvent *e)
|
||||
{
|
||||
Q3ListViewItem *item=selectedItem();
|
||||
if(item==NULL) {
|
||||
return;
|
||||
}
|
||||
setSelected(item,false);
|
||||
}
|
||||
|
||||
|
||||
void LibListView::contentsMousePressEvent(QMouseEvent *e)
|
||||
{
|
||||
Q3ListView::contentsMousePressEvent(e);
|
||||
|
@ -37,7 +37,6 @@ class LibListView : public Q3ListView
|
||||
LibListView(QWidget *parent);
|
||||
|
||||
protected:
|
||||
void focusOutEvent(QFocusEvent *e);
|
||||
void contentsMousePressEvent(QMouseEvent *e);
|
||||
};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user