[go: up one dir, main page]

Menu

[d56ae5]: / listwidget.cpp  Maximize  Restore  History

Download this file

15 lines (12 with data), 290 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
#include "listwidget.h"
#include <cstdio>
ListWidget::ListWidget(QWidget *parent)
: QListWidget(parent)
{
setStyleSheet("QListWidget{border: 0px}");
setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
}
void ListWidget::wheelEvent(QWheelEvent *event)
{
event->ignore();
}