[Bug 163861] Column line code number becomes blurred

2007-11-19 Thread herlock
Public bug reported:

Binary package hint: gedit

When I scroll my file, the column line number becomes blurred and illegible as 
you can see here:
http://www.labelgeek.be/images/gedit/Gedit-bug-column-line-number.png

It recovers readable when I select all lines or when I click on another
program.

Ubuntu Gusty (gedit 2.20.3)

ProblemType: Bug
Architecture: amd64
Date: Mon Nov 19 17:44:34 2007
DistroRelease: Ubuntu 7.10
ExecutablePath: /usr/bin/gedit
NonfreeKernelModules: fglrx
Package: gedit 2.20.3-0ubuntu1
PackageArchitecture: amd64
ProcCmdline: gedit
ProcCwd: /home/herlock
ProcEnviron:
 SHELL=/bin/bash
 PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
 LANG=fr_BE.UTF-8
SourcePackage: gedit
Uname: Linux laptop 2.6.22-14-generic #1 SMP Sun Oct 14 21:45:15 GMT 2007 
x86_64 GNU/Linux

** Affects: gedit (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug

-- 
Column line code number becomes blurred
https://bugs.launchpad.net/bugs/163861
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug contact for gedit in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 163861] Re: Column line code number becomes blurred

2007-11-19 Thread herlock

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/10470679/Dependencies.txt

** Attachment added: ProcMaps.txt
   http://launchpadlibrarian.net/10470680/ProcMaps.txt

** Attachment added: ProcStatus.txt
   http://launchpadlibrarian.net/10470681/ProcStatus.txt

-- 
Column line code number becomes blurred
https://bugs.launchpad.net/bugs/163861
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug contact for gedit in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


Re: [Bug 150556] Re: Problem with spaces when printing

2007-10-13 Thread herlock
On Fri, 12 Oct 2007 21:27:30 -
Sebastien Bacher [EMAIL PROTECTED] wrote:

 sending attachments by mail doesn't work on launchpad at the moment.
 Could you also make a screenshot of the print dialog you use?
 

Here are a few screenshots that I made and the output printing pdf
file : www.labelgeek.be/images/gedit

- Gedit with the little code and lines of space (Note that the
line of space at line 6 is printed ! This is the only one);
- The print dialog;
- A preview before printing (note that lines of spaces doesn't
appear except at line 6);   
- output pdf file;

I hope it's going to be helpfull.

-- 
Problem with spaces when printing
https://bugs.launchpad.net/bugs/150556
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


Re: [Bug 150556] Re: Problem with spaces when printing

2007-10-12 Thread herlock
On Thu, 11 Oct 2007 11:33:29 -
Sebastien Bacher [EMAIL PROTECTED] wrote:

 Thank you for your bug. What printer did you use? Do you get the issue
 if you use the pdf printing option?
 

I tested on HP LaserJet 1000 and HP Desket 5900. The bug also appears
when using the pdf printing option.

I joined you the c++ files and the pdf file.

 ** Changed in: gedit (Ubuntu)
Importance: Undecided = Low
  Assignee: (unassigned) = Ubuntu Desktop Bugs (desktop-bugs)
Status: New = Incomplete


-- 
Problem with spaces when printing
https://bugs.launchpad.net/bugs/150556
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 150556] Problem with spaces when printing

2007-10-08 Thread herlock
Public bug reported:

Binary package hint: gedit

I use Gedit to program in C/C++. When i had to print my little stupid
code, some free lines disapeared.

The code was:

// Projet 1
//
// Groupe 3

#include iostream
using namespace std;

int main() {
double solde=0.0;
// Cette variable contiendra la somme à retirer ou à verser 

int montant;
// sera le type d'opération (retrait, versement, intérêts)  

unsigned short int operation;

cout  Solde du compte :   solde  endl  endl;
cout  Opération (0=quitter, 1=verser, 2=retirer, 3=intérêts) ? ;


// Tant que le chois de l'utilisateur n'est pas de terminer le programme
while (cin  operation  operation != 0) {
if (operation == 1) {
cout  Montant à verser ? ;
cin  montant;
// ajout du versement au solde total
solde += montant;
} else if (operation == 2) {
cout  Montant à retirer ? ;
cin  montant;
// Si l'utilisateur demande de retirer plus que 
disponible
if (montant  solde) {
cerr  endl  Pour garder ses amis, la 
banque ne fait pas crédit !;
cerr  endl;
} else {
// retrait de la somme au solde total
solde -= montant;
}
} else if (operation == 3) {
// Intérêts de 0.5%
solde *= 1.005;
// Si l'utilisateur fait un choix non disponible
} else {
cerr  endl  *** Erreur: Opération inconnue ***  
endl;
}
cout  endl  Solde du compte :   solde  endl  endl;  
cout  Opération (0=quitter, 1=verser, 2=retirer, 3=intérêts) 
? ;
}
cout  endl  Solde du compte :   solde  endl;
}

The free line after // groupe 3 was not printed as after unsigned short int 
operation; and  cout  Opération (0=quitter, 1=verser, 2=retirer, 
3=intérêts) ? ;

Really sorry for the bad english

ProblemType: Bug
Architecture: i386
Date: Mon Oct  8 14:37:27 2007
DistroRelease: Ubuntu 7.10
ExecutablePath: /usr/bin/gedit
NonfreeKernelModules: fglrx
Package: gedit 2.20.1-0ubuntu2
PackageArchitecture: i386
ProcCmdline: gedit
ProcCwd: /home/herlock
ProcEnviron:
 PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
 LANG=fr_BE.UTF-8
 SHELL=/bin/bash
SourcePackage: gedit
Uname: Linux laptop 2.6.22-13-generic #1 SMP Thu Oct 4 17:18:44 GMT 2007 i686 
GNU/Linux

** Affects: gedit (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug

-- 
Problem with spaces when printing
https://bugs.launchpad.net/bugs/150556
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug contact for gedit in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 150556] Re: Problem with spaces when printing

2007-10-08 Thread herlock

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/9880696/Dependencies.txt

** Attachment added: ProcMaps.txt
   http://launchpadlibrarian.net/9880697/ProcMaps.txt

** Attachment added: ProcStatus.txt
   http://launchpadlibrarian.net/9880698/ProcStatus.txt

-- 
Problem with spaces when printing
https://bugs.launchpad.net/bugs/150556
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug contact for gedit in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs