aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/contact-editor
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@helixcode.com>2000-08-08 04:39:03 +0800
committerChris Lahey <clahey@src.gnome.org>2000-08-08 04:39:03 +0800
commit22381481e98896c8f207d9442aee1c2577f6d76d (patch)
tree63ca467235307b4ea51e3f41ef548963863181c1 /addressbook/contact-editor
parent35bb85fdf67039394e1dc20ac7d09fdaaa805c54 (diff)
downloadgsoc2013-evolution-22381481e98896c8f207d9442aee1c2577f6d76d.tar.gz
gsoc2013-evolution-22381481e98896c8f207d9442aee1c2577f6d76d.tar.zst
gsoc2013-evolution-22381481e98896c8f207d9442aee1c2577f6d76d.zip
Fixed the tab order to not repeat the web page address field.
2000-08-07 Christopher James Lahey <clahey@helixcode.com> * contact-editor/contact-editor.glade, contact-editor/e-contact-editor.c: Fixed the tab order to not repeat the web page address field. svn path=/trunk/; revision=4583
Diffstat (limited to 'addressbook/contact-editor')
-rw-r--r--addressbook/contact-editor/contact-editor.glade7
-rw-r--r--addressbook/contact-editor/e-contact-editor.c2
2 files changed, 5 insertions, 4 deletions
diff --git a/addressbook/contact-editor/contact-editor.glade b/addressbook/contact-editor/contact-editor.glade
index 7f11886b28..8ee51c6831 100644
--- a/addressbook/contact-editor/contact-editor.glade
+++ b/addressbook/contact-editor/contact-editor.glade
@@ -370,7 +370,7 @@
<widget>
<class>GtkEntry</class>
- <name>entry-phone1</name>
+ <name>entry-phone1b</name>
<can_focus>True</can_focus>
<editable>True</editable>
<text_visible>True</text_visible>
@@ -961,6 +961,7 @@
<widget>
<class>GtkCheckButton</class>
<name>checkbutton-htmlmail</name>
+ <visible>False</visible>
<label>Wants to receive _HTML mail</label>
<active>False</active>
<draw_indicator>True</draw_indicator>
@@ -1054,7 +1055,6 @@
<yalign>0.5</yalign>
<xpad>0</xpad>
<ypad>0</ypad>
- <focus_target>entry-phone1</focus_target>
</widget>
</widget>
@@ -1243,6 +1243,7 @@
<widget>
<class>GtkCheckButton</class>
<name>checkbutton-mailingaddress</name>
+ <visible>False</visible>
<label>_This is the mailing address</label>
<active>False</active>
<draw_indicator>True</draw_indicator>
@@ -1289,7 +1290,7 @@
<widget>
<class>GtkAlignment</class>
- <name>alignment12</name>
+ <name>alignment-contacts</name>
<xalign>0.5</xalign>
<yalign>0.5</yalign>
<xscale>1</xscale>
diff --git a/addressbook/contact-editor/e-contact-editor.c b/addressbook/contact-editor/e-contact-editor.c
index 235c8ea4b1..165d00e3f1 100644
--- a/addressbook/contact-editor/e-contact-editor.c
+++ b/addressbook/contact-editor/e-contact-editor.c
@@ -933,7 +933,7 @@ setup_tab_order(GladeXML *gui)
list = add_to_tab_order(list, gui, "entry-email1");
list = add_to_tab_order(list, gui, "entry-web");
list = add_to_tab_order(list, gui, "text-address");
- list = add_to_tab_order(list, gui, "button-contacts");
+ list = add_to_tab_order(list, gui, "alignment-contacts");
list = g_list_reverse(list);
e_container_change_tab_order(GTK_CONTAINER(container), list);
}
88' href='#n288'>288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416