hey,

how do i design the default button?

Qt Code:
  1. QPushButton* pb = new QPushButton(statusBar());
  2.  
  3. QPixmap pixmap(icon);//the file name of the icon
  4. QIcon ButtonIcon(pixmap);
  5. pb->setIcon(ButtonIcon);
  6. QSize s(16,16);
  7. pb->setIconSize(s);
  8. QString tip(btnName);
  9. pb->setToolTip(tip);
  10. connect(pb, SIGNAL(clicked()), this, SLOT(statusBtnClicked()));
To copy to clipboard, switch view to plain text mode 
the button has an image in it (as meant to be)

but it has some kind for frame (border) with padding that wraps the button.

i want to remove that

how do i do that?

thank you