Skip to content
This repository has been archived by the owner on Oct 24, 2018. It is now read-only.

Commit

Permalink
fix #443
Browse files Browse the repository at this point in the history
  • Loading branch information
guinux committed Jun 2, 2018
1 parent 94b5b4b commit c00b5d9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/transaction.vala
Expand Up @@ -1579,6 +1579,7 @@ namespace Pamac {
widget.has_default = true;
var scrolledwindow = new Gtk.ScrolledWindow (null, null);
var label = new Gtk.Label (warning_textbuffer.str);
label.selectable = true;
label.margin = 12;
scrolledwindow.visible = true;
label.visible = true;
Expand Down Expand Up @@ -1632,6 +1633,7 @@ namespace Pamac {
widget.has_default = true;
var scrolledwindow = new Gtk.ScrolledWindow (null, null);
var label = new Gtk.Label (textbuffer.str);
label.selectable = true;
label.margin = 12;
scrolledwindow.visible = true;
label.visible = true;
Expand Down

0 comments on commit c00b5d9

Please sign in to comment.