mirror of
https://github.com/YACReader/yacreader
synced 2025-07-26 00:44:59 -04:00
added drag&drop support for sorting comics in lists
This commit is contained in:
@ -137,7 +137,12 @@ void ComicFlowWidgetSW::updateConfig(QSettings * settings)
|
||||
|
||||
void ComicFlowWidgetSW::remove(int cover)
|
||||
{
|
||||
flow->removeSlide(cover);
|
||||
flow->removeSlide(cover);
|
||||
}
|
||||
|
||||
void ComicFlowWidgetSW::resortCovers(QList<int> newOrder)
|
||||
{
|
||||
flow->resortCovers(newOrder);
|
||||
}
|
||||
|
||||
|
||||
@ -329,7 +334,12 @@ void ComicFlowWidgetGL::updateConfig(QSettings * settings)
|
||||
|
||||
void ComicFlowWidgetGL::remove(int cover)
|
||||
{
|
||||
flow->remove(cover);
|
||||
flow->remove(cover);
|
||||
}
|
||||
|
||||
void ComicFlowWidgetGL::resortCovers(QList<int> newOrder)
|
||||
{
|
||||
flow->resortCovers(newOrder);
|
||||
}
|
||||
|
||||
//void ComicFlowWidgetGL::setCF_RX(int value){ flow->setCF_RX(value);}
|
||||
@ -342,4 +352,4 @@ void ComicFlowWidgetGL::remove(int cover)
|
||||
//void ComicFlowWidgetGL::setZ_Distance(int distance){ flow->setZ_Distance(distance);}
|
||||
//void ComicFlowWidgetGL::setCF_Y(int value){ flow->setCF_Y(value);}
|
||||
//void ComicFlowWidgetGL::setY_Distance(int value){ flow->setY_Distance(value);}
|
||||
//void ComicFlowWidgetGL::setPreset(const Preset & p){ flow->setPreset(p);}
|
||||
//void ComicFlowWidgetGL::setPreset(const Preset & p){ flow->setPreset(p);}
|
||||
|
Reference in New Issue
Block a user