aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar Brendan Taylor <whateley@gmail.com>2011-06-07 14:04:41 -0600
committerGravatar Brendan Taylor <whateley@gmail.com>2011-06-07 14:04:41 -0600
commit8753f053f6643700fa683de86bb08bdfd50f2e79 (patch)
tree06fc557d427fd7684dd8f3877a188704f1dd0615 /src
parentb9cb02d42b1e9b33b973efa98772a3559bf630f9 (diff)
Revert "wrap the mainbar_label_left when it gets too long."
This reverts commit 31b12cc2715db2da0b90bab9b51f33438b7af1c4. It didn't work the way I wanted.
Diffstat (limited to 'src')
-rw-r--r--src/uzbl-core.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/uzbl-core.c b/src/uzbl-core.c
index 3cf2407..6d2b7b1 100644
--- a/src/uzbl-core.c
+++ b/src/uzbl-core.c
@@ -847,6 +847,7 @@ create_scrolled_win() {
NULL);
}
+
GtkWidget*
create_mainbar() {
GUI *g = &uzbl.gui;
@@ -859,10 +860,6 @@ create_mainbar() {
gtk_misc_set_alignment (GTK_MISC(g->mainbar_label_left), 0, 0);
gtk_misc_set_padding (GTK_MISC(g->mainbar_label_left), 2, 2);
- /* wrap the label when it gets too long */
- /* (otherwise it expands the window, which is not what we want) */
- gtk_label_set_line_wrap(GTK_LABEL(g->mainbar_label_left), TRUE);
-
/* create right panel */
g->mainbar_label_right = gtk_label_new ("");
gtk_label_set_selectable(GTK_LABEL(g->mainbar_label_right), TRUE);