Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
marcogiusti committed Jun 3, 2024
2 parents 7ce3d74 + e331a0b commit b1d4488
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion virtualbricks/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.

__version__ = '2.0.0b17'
__version__ = '2.0.0b18'
8 changes: 4 additions & 4 deletions virtualbricks/gui/dialogs.py
Original file line number Diff line number Diff line change
Expand Up @@ -2224,12 +2224,12 @@ def step_3(self, dialog):
vbox.foreach(vbox.remove)
for i, (name, dest) in enumerate(iter_model(store)):
nlabel = Gtk.Label(name + ":")
nlabel.props.halign = 0.0
nlabel.props.valign = 0.5
nlabel.props.halign = Gtk.Align.FILL
nlabel.props.valign = Gtk.Align.CENTER
dlabel = Gtk.Label(dest.path)
dlabel.set_tooltip_text(dest.path)
dlabel.props.halign = 0.0
dlabel.props.valign = 0.5
dlabel.props.halign = Gtk.Align.FILL
dlabel.props.valign = Gtk.Align.CENTER
dlabel.set_ellipsize(Pango.EllipsizeMode.MIDDLE)
box = Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL, spacing=5)
box.pack_start(nlabel, False, True, 0)
Expand Down

0 comments on commit b1d4488

Please sign in to comment.