Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B-ASIC - Better ASIC Toolbox
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Computer Engineering
B-ASIC - Better ASIC Toolbox
Merge requests
!129
Add testing with pyqt5
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Add testing with pyqt5
testpyqt5
into
master
Overview
0
Commits
1
Pipelines
15
Changes
5
Merged
Oscar Gustafsson
requested to merge
testpyqt5
into
master
2 years ago
Overview
0
Commits
1
Pipelines
15
Changes
1
Expand
Closes
#146 (closed)
Edited
2 years ago
by
Oscar Gustafsson
0
0
Merge request reports
Compare
version 4
version 14
043ff3d2
2 years ago
version 13
1fc43b39
2 years ago
version 12
ef01e513
2 years ago
version 11
819da7b8
2 years ago
version 10
ac18569b
2 years ago
version 9
269afcc4
2 years ago
version 8
95d91abf
2 years ago
version 7
7751323b
2 years ago
version 6
6788c5f9
2 years ago
version 5
5846fd51
2 years ago
version 4
707352f3
2 years ago
version 3
cfebb2eb
2 years ago
version 2
a6ddd44b
2 years ago
version 1
5688ca2b
2 years ago
master (base)
and
version 5
latest version
f477a591
1 commit,
2 years ago
version 14
043ff3d2
1 commit,
2 years ago
version 13
1fc43b39
1 commit,
2 years ago
version 12
ef01e513
1 commit,
2 years ago
version 11
819da7b8
1 commit,
2 years ago
version 10
ac18569b
1 commit,
2 years ago
version 9
269afcc4
1 commit,
2 years ago
version 8
95d91abf
1 commit,
2 years ago
version 7
7751323b
1 commit,
2 years ago
version 6
6788c5f9
1 commit,
2 years ago
version 5
5846fd51
1 commit,
2 years ago
version 4
707352f3
1 commit,
2 years ago
version 3
cfebb2eb
1 commit,
2 years ago
version 2
a6ddd44b
1 commit,
2 years ago
version 1
5688ca2b
1 commit,
2 years ago
Show latest version
1 file
+
2
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
b_asic/GUI/main_window.py
+
2
−
1
Options
@@ -16,6 +16,7 @@ from qtpy.QtWidgets import (
QAction
,
QApplication
,
QFileDialog
,
QGraphicsItem
,
QGraphicsScene
,
QGraphicsTextItem
,
QGraphicsView
,
@@ -527,7 +528,7 @@ class MainWindow(QMainWindow):
attr_button_scene
.
moveBy
(
int
(
self
.
scene
.
width
()
/
4
),
int
(
self
.
scene
.
height
()
/
4
)
)
attr_button_scene
.
setFlag
(
Q
t
.
ItemFlag
.
ItemIsSelectable
,
True
)
attr_button_scene
.
setFlag
(
Q
GraphicsItem
.
ItemIsSelectable
,
True
)
operation_label
=
QGraphicsTextItem
(
op
.
name
,
attr_button_scene
)
if
not
self
.
is_show_names
:
operation_label
.
setOpacity
(
0
)
Loading