summaryrefslogtreecommitdiffstats
path: root/generic/tkListbox.c
diff options
context:
space:
mode:
Diffstat (limited to 'generic/tkListbox.c')
-rw-r--r--generic/tkListbox.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/generic/tkListbox.c b/generic/tkListbox.c
index 795ec0f..04dab6f 100644
--- a/generic/tkListbox.c
+++ b/generic/tkListbox.c
@@ -578,17 +578,6 @@ Tk_ListboxObjCmd(
return TCL_ERROR;
}
- /*
- * Adjust startup x view according to the justify option.
- */
-
- if (listPtr->justify == TK_JUSTIFY_RIGHT) {
- listPtr->xOffset = GetMaxOffset(listPtr);
- } else if (listPtr->justify == TK_JUSTIFY_CENTER) {
- listPtr->xOffset = GetMaxOffset(listPtr) / 2;
- listPtr->xOffset -= listPtr->xOffset % listPtr->xScrollUnit;
- }
-
Tcl_SetObjResult(interp, TkNewWindowObj(listPtr->tkwin));
return TCL_OK;
}