[gnome-disk-utility/new-ui] Avoid being clever when a volume changes
- From: David Zeuthen <davidz src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [gnome-disk-utility/new-ui] Avoid being clever when a volume changes
- Date: Tue, 27 Oct 2009 15:42:25 +0000 (UTC)
commit bb96b08581391ce890cd883292d35547e0ccb59b
Author: David Zeuthen <davidz redhat com>
Date: Tue Oct 27 11:41:08 2009 -0400
Avoid being clever when a volume changes
For example, we need to properly handle the case where a volume is
formatted - before we refused to update the details table because the
underlying GduPresentable didn't change.
src/palimpsest/gdu-section-volumes.c | 83 ++++++++++++++++-----------------
1 files changed, 40 insertions(+), 43 deletions(-)
---
diff --git a/src/palimpsest/gdu-section-volumes.c b/src/palimpsest/gdu-section-volumes.c
index 4976d5f..d97e7b7 100644
--- a/src/palimpsest/gdu-section-volumes.c
+++ b/src/palimpsest/gdu-section-volumes.c
@@ -1188,6 +1188,7 @@ gdu_section_volumes_update (GduSection *_section)
gboolean show_luks_forget_passphrase_button;
gboolean show_luks_change_passphrase_button;
GduKnownFilesystem *kfs;
+ GPtrArray *elements;
v = NULL;
d = NULL;
@@ -1225,64 +1226,60 @@ gdu_section_volumes_update (GduSection *_section)
}
/* ---------------------------------------------------------------------------------------------------- */
- /* rebuild table if the selected volume has changed */
+ /* rebuild table */
- if (section->priv->cur_volume != v) {
- GPtrArray *elements;
-
- if (section->priv->cur_volume != NULL)
- g_object_unref (section->priv->cur_volume);
- section->priv->cur_volume = v != NULL ? g_object_ref (v) : NULL;
-
- section->priv->usage_element = NULL;
- section->priv->capacity_element = NULL;
- section->priv->partition_type_element = NULL;
- section->priv->partition_flags_element = NULL;
- section->priv->partition_label_element = NULL;
- section->priv->device_element = NULL;
- section->priv->fs_type_element = NULL;
- section->priv->fs_label_element = NULL;
- section->priv->fs_available_element = NULL;
- section->priv->fs_mount_point_element = NULL;
+ if (section->priv->cur_volume != NULL)
+ g_object_unref (section->priv->cur_volume);
+ section->priv->cur_volume = v != NULL ? g_object_ref (v) : NULL;
- elements = g_ptr_array_new_with_free_func (g_object_unref);
+ section->priv->usage_element = NULL;
+ section->priv->capacity_element = NULL;
+ section->priv->partition_type_element = NULL;
+ section->priv->partition_flags_element = NULL;
+ section->priv->partition_label_element = NULL;
+ section->priv->device_element = NULL;
+ section->priv->fs_type_element = NULL;
+ section->priv->fs_label_element = NULL;
+ section->priv->fs_available_element = NULL;
+ section->priv->fs_mount_point_element = NULL;
- section->priv->usage_element = gdu_details_element_new (_("Usage:"), NULL, NULL);
- g_ptr_array_add (elements, section->priv->usage_element);
+ elements = g_ptr_array_new_with_free_func (g_object_unref);
- section->priv->device_element = gdu_details_element_new (_("Device:"), NULL, NULL);
- g_ptr_array_add (elements, section->priv->device_element);
+ section->priv->usage_element = gdu_details_element_new (_("Usage:"), NULL, NULL);
+ g_ptr_array_add (elements, section->priv->usage_element);
- section->priv->partition_type_element = gdu_details_element_new (_("Partition Type:"), NULL, NULL);
- g_ptr_array_add (elements, section->priv->partition_type_element);
+ section->priv->device_element = gdu_details_element_new (_("Device:"), NULL, NULL);
+ g_ptr_array_add (elements, section->priv->device_element);
- section->priv->partition_label_element = gdu_details_element_new (_("Partition Label:"), NULL, NULL);
- g_ptr_array_add (elements, section->priv->partition_label_element);
+ section->priv->partition_type_element = gdu_details_element_new (_("Partition Type:"), NULL, NULL);
+ g_ptr_array_add (elements, section->priv->partition_type_element);
- section->priv->partition_flags_element = gdu_details_element_new (_("Partition Flags:"), NULL, NULL);
- g_ptr_array_add (elements, section->priv->partition_flags_element);
+ section->priv->partition_label_element = gdu_details_element_new (_("Partition Label:"), NULL, NULL);
+ g_ptr_array_add (elements, section->priv->partition_label_element);
- section->priv->capacity_element = gdu_details_element_new (_("Capacity:"), NULL, NULL);
- g_ptr_array_add (elements, section->priv->capacity_element);
+ section->priv->partition_flags_element = gdu_details_element_new (_("Partition Flags:"), NULL, NULL);
+ g_ptr_array_add (elements, section->priv->partition_flags_element);
- if (g_strcmp0 (id_usage, "filesystem") == 0) {
- section->priv->fs_type_element = gdu_details_element_new (_("Type:"), NULL, NULL);
- g_ptr_array_add (elements, section->priv->fs_type_element);
+ section->priv->capacity_element = gdu_details_element_new (_("Capacity:"), NULL, NULL);
+ g_ptr_array_add (elements, section->priv->capacity_element);
- section->priv->fs_available_element = gdu_details_element_new (_("Available:"), NULL, NULL);
- g_ptr_array_add (elements, section->priv->fs_available_element);
+ if (g_strcmp0 (id_usage, "filesystem") == 0) {
+ section->priv->fs_type_element = gdu_details_element_new (_("Type:"), NULL, NULL);
+ g_ptr_array_add (elements, section->priv->fs_type_element);
- section->priv->fs_label_element = gdu_details_element_new (_("Label:"), NULL, NULL);
- g_ptr_array_add (elements, section->priv->fs_label_element);
+ section->priv->fs_available_element = gdu_details_element_new (_("Available:"), NULL, NULL);
+ g_ptr_array_add (elements, section->priv->fs_available_element);
- section->priv->fs_mount_point_element = gdu_details_element_new (_("Mount Point:"), NULL, NULL);
- g_ptr_array_add (elements, section->priv->fs_mount_point_element);
- }
+ section->priv->fs_label_element = gdu_details_element_new (_("Label:"), NULL, NULL);
+ g_ptr_array_add (elements, section->priv->fs_label_element);
- gdu_details_table_set_elements (GDU_DETAILS_TABLE (section->priv->details_table), elements);
- g_ptr_array_unref (elements);
+ section->priv->fs_mount_point_element = gdu_details_element_new (_("Mount Point:"), NULL, NULL);
+ g_ptr_array_add (elements, section->priv->fs_mount_point_element);
}
+ gdu_details_table_set_elements (GDU_DETAILS_TABLE (section->priv->details_table), elements);
+ g_ptr_array_unref (elements);
+
/* ---------------------------------------------------------------------------------------------------- */
/* reset all elements */
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]