maho

Results 35 comments of maho

On 05/03/2013 04:59 PM, raztus wrote: > See also #16 https://github.com/wertarbyte/autorandr/issues/16, which > addresses this same issue, with a slightly different approach. I'm not > sure which will perform better....

On 03.07.2013 21:55, Helge wrote: > I vote for this approach instead of #16 > https://github.com/wertarbyte/autorandr/issues/16. It is not always > reasonable to turn off all displays first. Note, that...

I think that option to have persistent watch expressions is very important for me. I'm entering the same function over and over and over, and writing the same things is...

Breakpoints are auto-saved out of the box.

Let's check: test_ee.py ```python import unittest class MyTestCase(unittest.TestCase): def _fn2(self): raise Exception("this shouldn't happend, but it did") def _fn(self): return self._fn2() def test_exception(self): self._fn() if __name__ == '__main__': unittest.main() ```...

should I do any more changes or it's ok?

I have bisected it and bad change happend in commit 7b563ad2eec7567aced585ce83390fbccaf3b594 Or, there is misuse in my code.

I have debugged a bit, and I discovered that when I add following line to .kv , ``` window_size: root.size ``` then it works ok. But ... what the hell...