After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 679140 - Make it possible to hide tabs when one has multiple tabs open
Make it possible to hide tabs when one has multiple tabs open
Status: RESOLVED DUPLICATE of bug 78776
Product: gnome-terminal
Classification: Core
Component: general
3.4.x
Other Linux
: Normal enhancement
: ---
Assigned To: GNOME Terminal Maintainers
GNOME Terminal Maintainers
Depends on:
Blocks:
 
 
Reported: 2012-06-29 13:49 UTC by rdivacky
Modified: 2012-08-24 20:38 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description rdivacky 2012-06-29 13:49:14 UTC
It's currently harcoded like this:

terminal-window.c:

static void
update_tab_visibility (TerminalWindow *window,
                       int             change)
{
  TerminalWindowPrivate *priv = window->priv;
  gboolean show_tabs;
  guint num;

  num = gtk_notebook_get_n_pages (GTK_NOTEBOOK (priv->notebook));

  show_tabs = (num + change) > 1;
  gtk_notebook_set_show_tabs (GTK_NOTEBOOK (priv->notebook), show_tabs);
}


so whenever there's more than 1 tab the visibility is always true. It would be nice to have this configurable so user can disable this.
Comment 1 Christian Persch 2012-08-24 20:38:31 UTC
Covered by byg 78776.

*** This bug has been marked as a duplicate of bug 78776 ***