This bugs me

This bugs me

Source

Selected Project: SugarLabs

TOS 6.4: Exercise - Find the Oldest Bug

Oldest Bug

TOS 6.5: Figure out how to create a new account on the bug tracker of your chosen project. You’ll need that account very soon.

GitHub

TOS 6.6: The Anatomy of a Good Bug Report

Bug Report

Bug: Button Sensitivty

  • Description: The undo/redo buttons are very sensitive when pressed in the GUI window
  • Environment: VMWare ESXi, Ubuntu 18.04 Focal Fossa, Fedora 32
  • Resolution: It appears that on line 667 of pippy_app.py the following code is present, where there is a typo on the variable butston which should be button.:
def __undobutton_cb(self, butston):
        text_buffer = self._source_tabs.get_text_buffer()
        if text_buffer.can_undo():
            text_buffer.undo()

TOS 6.7: Bug Triage

  1. Undo Button Sensitivity
  2. Redo Button Sensitivity
  3. Example Failure
  4. Automated Testing Framework
  5. Auto Indenting
Written on February 4, 2021