tint2conf: Updated tooltips
o9000 o9000
1 files changed,
10 insertions(+),
7 deletions(-)
jump to
M
src/tint2conf/properties.c
→
src/tint2conf/properties.c
@@ -853,7 +853,7 @@ gtk_tooltips_set_tip(tooltips, panel_combo_monitor, "The monitor on which the panel is placed", NULL);
row++; col = 2; - label = gtk_label_new(_("Width")); + label = gtk_label_new(_("Length")); gtk_misc_set_alignment(GTK_MISC(label), 0, 0); gtk_widget_show(label); gtk_table_attach(GTK_TABLE(table), label, col, col+1, row, row+1, GTK_FILL, 0, 0, 0);@@ -863,7 +863,7 @@ panel_width = gtk_spin_button_new_with_range(0, 9000, 1);
gtk_widget_show(panel_width); gtk_table_attach(GTK_TABLE(table), panel_width, col, col+1, row, row+1, GTK_FILL, 0, 0, 0); col++; - gtk_tooltips_set_tip(tooltips, panel_width, "The width of the panel", NULL); + gtk_tooltips_set_tip(tooltips, panel_width, "The length of the panel (width for horizontal panels, height for vertical panels)", NULL); panel_combo_width_type = gtk_combo_box_new_text(); gtk_widget_show(panel_combo_width_type);@@ -872,11 +872,11 @@ col++;
gtk_combo_box_append_text(GTK_COMBO_BOX(panel_combo_width_type), _("Percent")); gtk_combo_box_append_text(GTK_COMBO_BOX(panel_combo_width_type), _("Pixels")); gtk_combo_box_set_active(GTK_COMBO_BOX(panel_combo_width_type), 0); - gtk_tooltips_set_tip(tooltips, panel_combo_width_type, "The units used to specify the width of the panel: pixels or percentage of the monitor size", NULL); + gtk_tooltips_set_tip(tooltips, panel_combo_width_type, "The units used to specify the length of the panel: pixels or percentage of the monitor size", NULL); row++; col = 2; - label = gtk_label_new(_("Height")); + label = gtk_label_new(_("Size")); gtk_misc_set_alignment(GTK_MISC(label), 0, 0); gtk_widget_show(label); gtk_table_attach(GTK_TABLE(table), label, col, col+1, row, row+1, GTK_FILL, 0, 0, 0);@@ -886,7 +886,7 @@ panel_height = gtk_spin_button_new_with_range(0, 9000, 1);
gtk_widget_show(panel_height); gtk_table_attach(GTK_TABLE(table), panel_height, col, col+1, row, row+1, GTK_FILL, 0, 0, 0); col++; - gtk_tooltips_set_tip(tooltips, panel_height, "The height of the panel", NULL); + gtk_tooltips_set_tip(tooltips, panel_height, "The size of the panel (height for horizontal panels, width for vertical panels)", NULL); panel_combo_height_type = gtk_combo_box_new_text(); gtk_widget_show(panel_combo_height_type);@@ -895,7 +895,7 @@ col++;
gtk_combo_box_append_text(GTK_COMBO_BOX(panel_combo_height_type), _("Percent")); gtk_combo_box_append_text(GTK_COMBO_BOX(panel_combo_height_type), _("Pixels")); gtk_combo_box_set_active(GTK_COMBO_BOX(panel_combo_height_type), 0); - gtk_tooltips_set_tip(tooltips, panel_combo_height_type, "The units used to specify the height of the panel: pixels or percentage of the monitor size", NULL); + gtk_tooltips_set_tip(tooltips, panel_combo_height_type, "The units used to specify the size of the panel: pixels or percentage of the monitor size", NULL); row++; col = 2;@@ -1203,7 +1203,10 @@ gtk_tooltips_set_tip(tooltips, panel_combo_strut_policy, "Specifies the size of maximized windows. \n"
"Match the panel size means that maximized windows should extend to the edge of the panel. \n" "Match the hidden panel size means that maximized windows should extend to the edge of the panel when hidden; " "when visible, the panel and the windows will overlap. \n" - "Fill the screen means that maximized windows will always have the same size as the screen.", NULL); + "Fill the screen means that maximized windows will always have the same size as the screen. \n" + "\n" + "Note: on multi-monitor (Xinerama) setups, the panel must be placed at the edge (not in the middle) " + "of the virtual screen for this to work correctly.", NULL); row++; col = 2;