Codebase list tilix / 495d2e8
Fix #1236 gnunn1 6 years ago
1 changed file(s) with 12 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
707707 if (pdm.run() == ResponseType.APPLY) {
708708 string password = pdm.password;
709709 vte.feedChild(password, password.length);
710 static if (!USE_COMMIT_SYNCHRONIZATION) {
711 if (isSynchronizedInput()) {
712 SyncInputEvent se = SyncInputEvent(_terminalUUID, SyncInputEventType.INSERT_TEXT, null, password);
713 onSyncInput.emit(this, se);
714 }
715 }
710716 }
711717 } else {
712718 showErrorDialog(cast(Window)getToplevel(), format(_("The library %s could not be loaded, password functionality is unavailable."), LIBRARY_SECRET), _("Library Not Loaded"));
13341340 text ~= '\n';
13351341 }
13361342 vte.feedChild(text, text.length);
1343 static if (!USE_COMMIT_SYNCHRONIZATION) {
1344 if (isSynchronizedInput()) {
1345 SyncInputEvent se = SyncInputEvent(_terminalUUID, SyncInputEventType.INSERT_TEXT, null, text);
1346 onSyncInput.emit(this, se);
1347 }
1348 }
13371349 vte.grabFocus();
13381350 }
13391351 }