diff options
author | trevor <trevor@FreeBSD.org> | 2004-02-13 05:21:10 +0800 |
---|---|---|
committer | trevor <trevor@FreeBSD.org> | 2004-02-13 05:21:10 +0800 |
commit | 4f0c75b3c629bec96190f7c96c16b94676975272 (patch) | |
tree | 6dfb9dc154143b85189121618c70fdd1bda534ff /www/firefox/files | |
parent | 5f54d4e2c4e157711b54e1a8377228d1d7fcd799 (diff) | |
download | freebsd-ports-gnome-4f0c75b3c629bec96190f7c96c16b94676975272.tar.gz freebsd-ports-gnome-4f0c75b3c629bec96190f7c96c16b94676975272.tar.zst freebsd-ports-gnome-4f0c75b3c629bec96190f7c96c16b94676975272.zip |
Fix the window ID in firefox.rb (new PORTREVISION).
PR: 62735
Submitted by: obraun
Diffstat (limited to 'www/firefox/files')
-rw-r--r-- | www/firefox/files/firefox.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/firefox/files/firefox.rb b/www/firefox/files/firefox.rb index 1c970f9ee1b2..082607af8783 100644 --- a/www/firefox/files/firefox.rb +++ b/www/firefox/files/firefox.rb @@ -71,7 +71,7 @@ IO::popen("xwininfo -display #{$display} -root -tree") { if NAME != "firefox" $windows = io.grep(%r<"Mozilla"\s+"navigator:\s*browser">) else - $windows = io.grep(%r<MozillaFirefox-bin.*>) + $windows = io.grep(%r<Firefox-bin.*>) end } |