diff --git a/custom_widgets/yacreader_library_item_widget.cpp b/custom_widgets/yacreader_library_item_widget.cpp index e4430a2b..245b2a2f 100644 --- a/custom_widgets/yacreader_library_item_widget.cpp +++ b/custom_widgets/yacreader_library_item_widget.cpp @@ -26,7 +26,7 @@ YACReaderLibraryItemWidget::YACReaderLibraryItemWidget(QString n/*ame*/, QString options->setFixedWidth(18); options->setSizePolicy(QSizePolicy::Fixed,QSizePolicy::Minimum); options->setStyleSheet("QToolButton {border:none;}"); - connect(options,SIGNAL(pressed()),this,SIGNAL(showOptions())); + connect(options,SIGNAL(clicked()),this,SIGNAL(showOptions())); /*up = new QToolButton(this); up->setIcon(QIcon(":/images/libraryUp.png")); up->setHidden(true); @@ -152,4 +152,4 @@ void YACReaderLibraryItemWidget::setName(const QString & name) { this->name = name; nameLabel->setText(name); -} \ No newline at end of file +}