• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

feeluown / FeelUOwn / 3607006942

pending completion
3607006942

push

github

GitHub
gui: new search page (#627)

155 of 155 new or added lines in 6 files covered. (100.0%)

7619 of 12598 relevant lines covered (60.48%)

0.6 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

54.55
/feeluown/gui/page_containers/scroll_area.py
1
import sys
1✔
2

3
from PyQt5.QtCore import Qt
1✔
4
from PyQt5.QtWidgets import QScrollArea, QFrame
1✔
5

6
from feeluown.gui.helpers import BgTransparentMixin
1✔
7

8

9
class ScrollArea(QScrollArea, BgTransparentMixin):
1✔
10
    """
11
    ScrollArea is designed to be used as a container for page_body.
12
    Be careful when you use it as a container for other widgets.
13
    """
14
    def __init__(self, parent=None):
1✔
15
        super().__init__(parent=parent)
×
16

17
        self.setWidgetResizable(True)
×
18
        self.setFrameShape(QFrame.NoFrame)
×
19

20
        if sys.platform.lower() != 'darwin':
×
21
            self.setVerticalScrollBarPolicy(Qt.ScrollBarAlwaysOff)
×
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc