1
0
mirror of https://github.com/dguglielmi/sunny-overlay.git synced 2025-12-06 18:12:39 +01:00

- Add x11-terms/gnome-terminal with Fedora transparency patch.

This commit is contained in:
2014-08-09 18:30:38 +02:00
parent 74ab5a6f7f
commit 684cffc469
10 changed files with 1168 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
From 0d52fef0ca60483debbdedec43bd07a8e9f76bfa Mon Sep 17 00:00:00 2001
From: Christian Persch <chpe@gnome.org>
Date: Sun, 20 Apr 2014 20:21:04 +0200
Subject: [PATCH 57/61] window: Use fallback tab title for empty terminal title
https://bugzilla.gnome.org/show_bug.cgi?id=706816
---
src/terminal-tabs-menu.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/src/terminal-tabs-menu.c b/src/terminal-tabs-menu.c
index ed5fc7b..fb2b966 100644
--- a/src/terminal-tabs-menu.c
+++ b/src/terminal-tabs-menu.c
@@ -176,7 +176,9 @@ sync_tab_title (TerminalScreen *screen,
title = terminal_screen_get_title (screen);
- g_object_set (action, "label", title, NULL);
+ g_object_set (action,
+ "label", title && title[0] ? title : _("Terminal"),
+ NULL);
}
static void
--
1.9.0