A more likely route is  possibly via a race condition:

  indicator_datetime_init()
          self->priv->label = NULL;

(Force to NULL)

  get_label()
        /* If there's not a label, we'll build ourselves one */
        if (self->priv->label == NULL) {
          self->priv->label = GTK_LABEL(gtk_label_new("Time"));

(Force to "Time")

  set_property()
          case PROP_SHOW_CLOCK: {
                        self->priv->show_clock = g_value_get_boolean(value);
                        if (self->priv->label != NULL) {
                                gtk_widget_set_visible (GTK_WIDGET 
(self->priv->label), self->priv->show_clock);

(Set label to (neatly) always be visible).

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/835297

Title:
  Time not being shown, substituted by the word "Time""

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/indicator-datetime/+bug/835297/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to