Use RowLayout for delegate buttons in the Clipboard applet

All applets for placing a group of buttons use a Layout items (RowLayout or ColumnLayout) that has a non-zero spacing by default, while delegate buttons use a Row that has a zero spacing by default. This MR makes the delegate buttons use a RowLayout, which makes them look similar to the rest of the button groups.
wilder-5.24
Eugene Popov 5 years ago committed by David Edmundson
parent 6c57e61aea
commit 7ad56f837e
  1. 3
      applets/clipboard/contents/ui/DelegateToolButtons.qml

@ -19,10 +19,11 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
*********************************************************************/
import QtQuick 2.0
import QtQuick.Layouts 1.1
import org.kde.plasma.components 3.0 as PlasmaComponents3
Row {
RowLayout {
id: toolButtonsLayout
visible: menuItem.ListView.isCurrentItem

Loading…
Cancel
Save