Skip to content

Commit

Permalink
Fix paths in ui and settings (#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
ch-sa authored Dec 27, 2021
1 parent 3df814c commit 0c67bc4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions labelCloud/ressources/interfaces/interface.ui
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,14 @@ QListWidget#label_list::item {
padding-left: 22px;
padding-top: 7px;
padding-bottom: 7px;
background: url("labelCloud/ressources/icons/cube-outline.svg") center left no-repeat;
background: url("../icons/cube-outline.svg") center left no-repeat;
}

QListWidget#label_list::item:selected {
color: #FFF;
border: none;
background: rgb(0, 0, 255);
background: url("labelCloud/ressources/icons/cube-outline_white.svg") center left no-repeat, #0000ff;
background: url("../icons/cube-outline_white.svg") center left no-repeat, #0000ff;
}</string>
</property>
<widget class="QWidget" name="centralwidget">
Expand Down
2 changes: 1 addition & 1 deletion labelCloud/view/settings_dialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def __init__(self, parent=None) -> None:
self.parent_gui = parent
uic.loadUi(
pkg_resources.resource_filename(
"labelcloud.ressources.interfaces", "settings_interface.ui"
"labelCloud.ressources.interfaces", "settings_interface.ui"
),
self,
)
Expand Down

0 comments on commit 0c67bc4

Please sign in to comment.