[issue2754] Mac version of IDLE doesn't scroll as expected

2009-03-30 Thread Ronald Oussoren

Ronald Oussoren ronaldousso...@mac.com added the comment:

I'm closing this issue because I'v confirmed that the issue goes away when 
I install a newer version of Tk In /Library/Frameworks.

--
resolution:  - invalid
status: open - closed

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue2754
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2754] Mac version of IDLE doesn't scroll as expected

2009-01-02 Thread Ronald Oussoren

Ronald Oussoren ronaldousso...@mac.com added the comment:

This is almost certainly a Tk issue and hence not something we can fix.

I'm not closing the bug though because I no too little of Tk to be sure.

--
nosy: +ronaldoussoren

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue2754
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2754] Mac version of IDLE doesn't scroll as expected

2009-01-02 Thread Guilherme Polo

Guilherme Polo ggp...@gmail.com added the comment:

I see some issues related to scrolling under macosx were fixed in tk
8.4.13, but I can't test them since I don't have a mac.

If scrolling doesn't work with the example below then I can just say the
problem is indeed with tk, but you could try upgrading it.

import Tkinter

root = Tkinter.Tk()

text = Tkinter.Text()
text.focus_set()
vbar = Tkinter.Scrollbar(orient='vertical', command=text.yview)
text.configure(yscrollcommand=vbar.set)

vbar.pack(side='right', fill='y')
text.pack(fill='both', expand=True)

for l in range(int(text['height']) + 10):
text.insert('end', x\n)

root.mainloop()

--
nosy: +gpolo
Added file: http://bugs.python.org/file12539/tktext_scroll.py

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue2754
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2754] Mac version of IDLE doesn't scroll as expected

2008-05-21 Thread Viennet

Viennet [EMAIL PROTECTED] added the comment:

I confirm this bug. The mouve wheel does not scroll the windows.

--
nosy: +emmanuelito

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2754
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2754] Mac version of IDLE doesn't scroll as expected

2008-05-04 Thread Alex Robinson

New submission from Alex Robinson [EMAIL PROTECTED]:

On a Mac running 10.5.2 in IDLE 1.2.1, the scroll bars don't move as 
expected  track pad/mouse scrolling is not enabled. I believe this is 
also the case on Tiger (10.4)

When using the scroll bar to scroll up through code, the scroll bar 
moves much faster than the mouse pointer. When scrolling down, the mouse 
pointer moves slightly faster.

Unlike Terminal, scrolling using a scroll wheel on a mouse or the two 
fingers on the trackpad doesn't work with IDLE.

I realize these are fairly minor UI issues, but they're still 
frustrating and slow down my workflow.

--
components: IDLE, Macintosh
messages: 66202
nosy: alextrob
severity: normal
status: open
title: Mac version of IDLE doesn't scroll as expected
type: behavior
versions: Python 2.5

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2754
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com