| 31 | } |
| 32 | |
| 33 | void UserScriptWidget::resizeEvent(QResizeEvent *event) |
| 34 | { |
| 35 | QWidget::resizeEvent(event); |
| 36 | |
| 37 | int tableWidth = ui->tableViewScripts->geometry().width(); |
| 38 | ui->tableViewScripts->setColumnWidth(0, tableWidth / 25); |
| 39 | ui->tableViewScripts->setColumnWidth(1, tableWidth / 4); |
| 40 | ui->tableViewScripts->setColumnWidth(2, tableWidth / 2); |
| 41 | ui->tableViewScripts->setColumnWidth(3, tableWidth / 5); |
| 42 | } |
| 43 | |
| 44 | UserScriptWidget::~UserScriptWidget() |
| 45 | { |
nothing calls this directly
no outgoing calls
no test coverage detected