Hello,

i have created an action:
Qt Code:
  1. itemsDeleteAct->setIcon(QIcon(":Delete_Items.png"));
  2. itemsDeleteAct->setText(tr("Delete items"));
  3. itemsDeleteAct->setShortcut(QString("Del"));
  4. itemsDeleteAct->setShortcutContext(Qt::WidgetShortcut);
  5. itemsDeleteAct->setStatusTip(tr("Delete selected items"));
  6. itemsDeleteAct->setToolTip(itemsDeleteAct->statusTip());
To copy to clipboard, switch view to plain text mode 
This action is added to a toolbar. If the mouse hovers above the toolbutton a tooltip is shown(tooltip.png)

How can i control the size of the icon in this tooltip?

I can resize Delete_Items.png, but i use this action at different places.
Resizing the image would not work if i use a vector(.svg) graphic.

Best regards