MCPcopy Create free account
hub / github.com/LeFroid/Viper-Browser / resizeEvent

Method resizeEvent

src/ui/user_scripts/UserScriptWidget.cpp:33–42  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

31}
32
33void 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
44UserScriptWidget::~UserScriptWidget()
45{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected