diff --git a/gpaste-reloaded@feuerfuchs.eu/files/gpaste-reloaded@feuerfuchs.eu/6.4/GPasteNotInstalledDialog.js b/gpaste-reloaded@feuerfuchs.eu/files/gpaste-reloaded@feuerfuchs.eu/6.4/GPasteNotInstalledDialog.js index 31b3cba6a59..aa3478428a8 100644 --- a/gpaste-reloaded@feuerfuchs.eu/files/gpaste-reloaded@feuerfuchs.eu/6.4/GPasteNotInstalledDialog.js +++ b/gpaste-reloaded@feuerfuchs.eu/files/gpaste-reloaded@feuerfuchs.eu/6.4/GPasteNotInstalledDialog.js @@ -1,6 +1,7 @@ const ModalDialog = imports.ui.modalDialog; const St = imports.gi.St; const GObject = imports.gi.GObject; +const Pango = imports.gi.Pango; const _ = require('./__init__')._; @@ -10,7 +11,11 @@ var GPasteNotInstalledDialog = GObject.registerClass( _init(callback) { super._init({ styleClass: 'gpaste__not-found-dialog', destroyOnClose: false }); - this.contentLayout.add(new St.Label({ text: _("GPaste is not installed. Please install the necessary packages and then restart Cinnamon for this applet to start working.") })); + this.label = new St.Label({ text: _("GPaste is not installed. Please install the necessary packages and then restart Cinnamon for this applet to start working.") }); + this.label.clutter_text.line_wrap = true; + this.label.clutter_text.set_line_wrap_mode(Pango.WrapMode.WORD_CHAR); + + this.contentLayout.add(this.label); this.contentLayout.add_style_class_name('gpaste__not-found-dialog__content'); this.setButtons([ diff --git a/gpaste-reloaded@feuerfuchs.eu/files/gpaste-reloaded@feuerfuchs.eu/metadata.json b/gpaste-reloaded@feuerfuchs.eu/files/gpaste-reloaded@feuerfuchs.eu/metadata.json index fceb5532981..43ff8a07525 100644 --- a/gpaste-reloaded@feuerfuchs.eu/files/gpaste-reloaded@feuerfuchs.eu/metadata.json +++ b/gpaste-reloaded@feuerfuchs.eu/files/gpaste-reloaded@feuerfuchs.eu/metadata.json @@ -3,7 +3,7 @@ "uuid": "gpaste-reloaded@feuerfuchs.eu", "max-instances": -1, "description": "Instantly access and manage your clipboard history.", - "version": "2.7", + "version": "2.7.1", "multiversion": "true", "name": "GPaste Reloaded" }