CVS commit by esben: Only popup action selection if the clipboard item is different from the last. BUGS: 94330 M +7 -3 toplevel.cpp 1.173 --- kdebase/klipper/toplevel.cpp #1.172:1.173 @@ -842,8 +842,12 @@ void KlipperWidget::checkClipData( bool QString text; QTextDrag::decode( data, text ); + const HistoryStringItem* topItem = dynamic_cast( history()->first() ); + if ( !topItem || text != topItem->text() ) { if ( myURLGrabber->checkNewData( text ) ) { return; // don't add into the history } + + } }