Skip to content
This repository has been archived by the owner on Aug 3, 2019. It is now read-only.

Commit

Permalink
Fix #127
Browse files Browse the repository at this point in the history
  • Loading branch information
mhsabbagh committed Aug 3, 2019
1 parent 4fd6a86 commit e0fe3d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions green-recorder
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ aboutmenuitem.connect("activate", showabout)

# Assign the texts to the interface
window.set_title(_("Green Recorder"))
areachooser.set_name(_('AreaChooser'))
areachooser.set_name("AreaChooser")

window.connect("delete-event", Gtk.main_quit)
filename.set_placeholder_text(_("File Name.."))
Expand Down Expand Up @@ -480,7 +480,7 @@ class Handler:
sendnotification(_("Your window position has been saved!"), 3)

def selectarea(self, GtkButton):
areachooser.set_title(_("Area Chooser"))
areachooser.set_title("Area Chooser")
areachooser.show()

def stoprecordingclicked(self, GtkButton):
Expand Down

0 comments on commit e0fe3d3

Please sign in to comment.