summaryrefslogtreecommitdiffstats
path: root/iw
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2003-10-17 21:30:03 +0000
committerJeremy Katz <katzj@redhat.com>2003-10-17 21:30:03 +0000
commit05cd9363a4ff45e8377dc2390a4f960c7000aa38 (patch)
tree5b19078fad2ec7b612cbded5c4b4f3a7fef4752e /iw
parent000823796ca99d8b801b132840e2f6d690b90e6b (diff)
downloadanaconda-05cd9363a4ff45e8377dc2390a4f960c7000aa38.tar.gz
anaconda-05cd9363a4ff45e8377dc2390a4f960c7000aa38.tar.xz
anaconda-05cd9363a4ff45e8377dc2390a4f960c7000aa38.zip
trigger on value-changed instead of just changed so that we update the size
label even when it's just typed in (#107418)
Diffstat (limited to 'iw')
-rw-r--r--iw/partition_dialog_gui.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/iw/partition_dialog_gui.py b/iw/partition_dialog_gui.py
index 17b372a15..1acc4970f 100644
--- a/iw/partition_dialog_gui.py
+++ b/iw/partition_dialog_gui.py
@@ -404,10 +404,10 @@ class PartitionEditor:
lbl.set_mnemonic_widget(self.endcylspin)
maintable.attach(self.endcylspin, 1, 2, row, row + 1)
- self.startcylspin.connect("changed", self.cylspinchangedCB,
+ self.startcylspin.connect("value-changed", self.cylspinchangedCB,
(dev, self.startcylspin,
self.endcylspin, bycyl_sizelabel))
- self.endcylspin.connect("changed", self.cylspinchangedCB,
+ self.endcylspin.connect("value-changed", self.cylspinchangedCB,
(dev, self.startcylspin,
self.endcylspin, bycyl_sizelabel))