[Touch-packages] [Bug 1738676] Re: With natural scrolling, horizontal sliders behave backwards

2020-02-07 Thread yoyoma2
With 18.04 LTS, if you login with flashback, the volume slider in the
sound settings as well as the volume slider that drops down when
clicking the speaker indicator behave backwards even when natural
scrolling is off.

With flashback, turning natural scrolling on actually makes both volume
sliders behave as you would expect (up=up, down=down).  Using "natural
scrolling" is too unnatural to keep this setting however.

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to gtk+3.0 in Ubuntu.
https://bugs.launchpad.net/bugs/1738676

Title:
  With natural scrolling, horizontal sliders behave backwards

Status in GNOME Shell:
  New
Status in gnome-shell package in Ubuntu:
  Triaged
Status in gtk+3.0 package in Ubuntu:
  Confirmed

Bug description:
  When natural-scrolling is enabled, controlling horizontal sliders is
  backwards and counter intuitive.

  The volume control in the top-bar "speaker" icon is backwards.

  You have to...
  - scroll DOWN, to INCREASE the volume
  - scroll UP, to DECREASE the volume

  Expected behavior:

  Enable natural-scrolling and
  - scroll UP, to INCREASE the volume
  - scroll DOWN, to DECREASE the volume
  - scroll UP, to INCREASE the screen brightness
  - scroll DOWN, to DECREASE the screen brightness

  Enable natural-scrolling, hover over a horizontal slider, and...
  - scroll UP, to move the slider to the RIGHT
  - scroll DOWN, to move the slider to the LEFT

  This happens for the OSD volume icon, and for the volume slider in the
  topbar menu.

  This also happens for screen brightness controls.

  This problem occurs for both mouse natural-scrolling and touchpad
  natural scrolling.

  Expected fix:

  When the pointer hovers over the speaker icon in the scroll actions on the 
speaker icon in the top bar should be reversed.
  When the user interacts with a horizontal slider, scrolling to the top should 
always move the slider to the right, and scrolling down should always move the 
slider to the left, even if natural-scrolling is enabled.

  ProblemType: Bug
  DistroRelease: Ubuntu 17.10
  Package: gnome-shell 3.26.2-0ubuntu0.1
  ProcVersionSignature: Ubuntu 4.13.0-19.22-generic 4.13.13
  Uname: Linux 4.13.0-19-generic x86_64
  NonfreeKernelModules: wl
  ApportVersion: 2.20.7-0ubuntu3.6
  Architecture: amd64
  CurrentDesktop: GNOME
  Date: Sun Dec 17 19:23:30 2017
  DisplayManager: gdm3
  GsettingsChanges:
   b'org.gnome.shell' b'command-history' b"['r']"
   b'org.gnome.shell' b'had-bluetooth-devices-setup' b'true'
   b'org.gnome.shell' b'favorite-apps' b"['google-chrome.desktop', 
'chrome-eppojlglocelodeimnohnlnionkobfln-Default.desktop', 'spotify.desktop', 
'org.gnome.Nautilus.desktop', 'org.gnome.Terminal.desktop', 
'org.gnome.gedit.desktop', 'libreoffice-writer.desktop', 
'libreoffice-calc.desktop', 'org.gnome.Software.desktop', 
'gnome-system-monitor.desktop']"
   b'org.gnome.desktop.interface' b'gtk-im-module' b"'gtk-im-context-simple'"
  InstallationDate: Installed on 2017-12-10 (7 days ago)
  InstallationMedia: Ubuntu 17.10.0 2017.12.10 amd64 "Custom Artful Aardvark"
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: gnome-shell
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-shell/+bug/1738676/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1647059] Re: On screen keyboard partially clipped or completely off screen

2016-12-11 Thread yoyoma2
The bug is in the unity-greeter package not in lightdm.

** Package changed: lightdm (Ubuntu) => unity-greeter (Ubuntu)

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to lightdm in Ubuntu.
https://bugs.launchpad.net/bugs/1647059

Title:
  On screen keyboard partially clipped or completely off screen

Status in unity-greeter package in Ubuntu:
  New

Bug description:
  The on screen keyboard is too low and partially clipped or completely
  off the bottom of the screen.

  On a laptop with a 2000 pixel high built-in screen with the lid closed
  and connected to a 1080p hdmi tv.

  Replication steps

  1) Turn on the on screen keyboard and log in using it
  2) Logout or reboot
  3) Lightdm remembers that the on screen keyboard is on and tries to display it

  = Lightdm displays the on screen keyboard using the size of the unused
  2000 pixel high screen for alignment instead of the 1080 high screen
  in use.  Only the top of the keyboard is visible at the bottom of the
  screen.  If lightdm is configured to use 720p then the on screen
  keyboard is completely clipped and invisible.

  The problem only occurs when lightdm remembers that the on screen
  keyboard is on.  Turning it on manually correctly displays it at the
  bottom of the screen.  Toggling a misplaced keyboard off and back on
  unfortunately doesn't fix the problem.

  Workaround 1

  When logging in, after typing password, turn off the on screen
  keyboard and click the small login arrow instead of clicking the on
  screen enter key.  Each time logging in you'll need to turn the on
  screen keyboard on and off again.  Turning off an invisible/clipped
  keyboard and rebooting will temporarily fix the problem.

  Workaround 2

  Dangerous hack.  Run a script to turn off the on screen keyboard in
  lightdm's dconf database.  To make this script run as a startup
  application the sudo commands need to be removed and the lightdm group
  membership given to the user running it as well as r/w access to
  /var/lib/lightdm/.config/dconf/user.

  #!/bin/bash
  sudo cp /var/lib/lightdm/.config/dconf/user ~/.config/dconf/lightdm
  printf %s\\n "user-db:lightdm" > ~/db_profile_lightdm
  export ONSCREEN_KBD=$(DCONF_PROFILE=~/db_profile_lightdm dconf read 
/com/canonical/unity-greeter/onscreen-keyboard)
  #echo 'ONSCREEN_KBD=' $ONSCREEN_KBD
  if [ "$ONSCREEN_KBD" != "false" ]; then
 DCONF_PROFILE=~/db_profile_lightdm dconf write 
/com/canonical/unity-greeter/onscreen-keyboard false
 sudo cp ~/.config/dconf/lightdm /var/lib/lightdm/.config/dconf/user
  fi
  rm -f ~/db_profile_lightdm ~/.config/dconf/lightdm
  exit 0

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: lightdm 1.10.6-0ubuntu1
  ProcVersionSignature: Ubuntu 3.13.0-37.64-generic 3.13.11.7
  Uname: Linux 3.13.0-37-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.14.1-0ubuntu3.21
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Sat Dec  3 09:16:31 2016
  InstallationDate: Installed on 2014-07-09 (877 days ago)
  InstallationMedia: sonar 13.10 - Release amd64
  SourcePackage: lightdm
  UpgradeStatus: Upgraded to trusty on 2014-07-09 (877 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-greeter/+bug/1647059/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1647059] [NEW] On screen keyboard partially clipped or completely off screen

2016-12-03 Thread yoyoma2
Public bug reported:

The on screen keyboard is too low and partially clipped or completely
off the bottom of the screen.

On a laptop with a 2000 pixel high built-in screen with the lid closed
and connected to a 1080p hdmi tv.

Replication steps

1) Turn on the on screen keyboard and log in using it
2) Logout or reboot
3) Lightdm remembers that the on screen keyboard is on and tries to display it

= Lightdm displays the on screen keyboard using the size of the unused
2000 pixel high screen for alignment instead of the 1080 high screen in
use.  Only the top of the keyboard is visible at the bottom of the
screen.  If lightdm is configured to use 720p then the on screen
keyboard is completely clipped and invisible.

The problem only occurs when lightdm remembers that the on screen
keyboard is on.  Turning it on manually correctly displays it at the
bottom of the screen.  Toggling a misplaced keyboard off and back on
unfortunately doesn't fix the problem.

Workaround 1

When logging in, after typing password, turn off the on screen keyboard
and click the small login arrow instead of clicking the on screen enter
key.  Each time logging in you'll need to turn the on screen keyboard on
and off again.  Turning off an invisible/clipped keyboard and rebooting
will temporarily fix the problem.

Workaround 2

Dangerous hack.  Run a script to turn off the on screen keyboard in
lightdm's dconf database.  To make this script run as a startup
application the sudo commands need to be removed and the lightdm group
membership given to the user running it as well as r/w access to
/var/lib/lightdm/.config/dconf/user.

#!/bin/bash
sudo cp /var/lib/lightdm/.config/dconf/user ~/.config/dconf/lightdm
printf %s\\n "user-db:lightdm" > ~/db_profile_lightdm
export ONSCREEN_KBD=$(DCONF_PROFILE=~/db_profile_lightdm dconf read 
/com/canonical/unity-greeter/onscreen-keyboard)
#echo 'ONSCREEN_KBD=' $ONSCREEN_KBD
if [ "$ONSCREEN_KBD" != "false" ]; then
   DCONF_PROFILE=~/db_profile_lightdm dconf write 
/com/canonical/unity-greeter/onscreen-keyboard false
   sudo cp ~/.config/dconf/lightdm /var/lib/lightdm/.config/dconf/user
fi
rm -f ~/db_profile_lightdm ~/.config/dconf/lightdm
exit 0

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: lightdm 1.10.6-0ubuntu1
ProcVersionSignature: Ubuntu 3.13.0-37.64-generic 3.13.11.7
Uname: Linux 3.13.0-37-generic x86_64
NonfreeKernelModules: nvidia
ApportVersion: 2.14.1-0ubuntu3.21
Architecture: amd64
CurrentDesktop: Unity
Date: Sat Dec  3 09:16:31 2016
InstallationDate: Installed on 2014-07-09 (877 days ago)
InstallationMedia: sonar 13.10 - Release amd64
SourcePackage: lightdm
UpgradeStatus: Upgraded to trusty on 2014-07-09 (877 days ago)

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


** Tags: amd64 apport-bug third-party-packages trusty

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to lightdm in Ubuntu.
https://bugs.launchpad.net/bugs/1647059

Title:
  On screen keyboard partially clipped or completely off screen

Status in lightdm package in Ubuntu:
  New

Bug description:
  The on screen keyboard is too low and partially clipped or completely
  off the bottom of the screen.

  On a laptop with a 2000 pixel high built-in screen with the lid closed
  and connected to a 1080p hdmi tv.

  Replication steps

  1) Turn on the on screen keyboard and log in using it
  2) Logout or reboot
  3) Lightdm remembers that the on screen keyboard is on and tries to display it

  = Lightdm displays the on screen keyboard using the size of the unused
  2000 pixel high screen for alignment instead of the 1080 high screen
  in use.  Only the top of the keyboard is visible at the bottom of the
  screen.  If lightdm is configured to use 720p then the on screen
  keyboard is completely clipped and invisible.

  The problem only occurs when lightdm remembers that the on screen
  keyboard is on.  Turning it on manually correctly displays it at the
  bottom of the screen.  Toggling a misplaced keyboard off and back on
  unfortunately doesn't fix the problem.

  Workaround 1

  When logging in, after typing password, turn off the on screen
  keyboard and click the small login arrow instead of clicking the on
  screen enter key.  Each time logging in you'll need to turn the on
  screen keyboard on and off again.  Turning off an invisible/clipped
  keyboard and rebooting will temporarily fix the problem.

  Workaround 2

  Dangerous hack.  Run a script to turn off the on screen keyboard in
  lightdm's dconf database.  To make this script run as a startup
  application the sudo commands need to be removed and the lightdm group
  membership given to the user running it as well as r/w access to
  /var/lib/lightdm/.config/dconf/user.

  #!/bin/bash
  sudo cp /var/lib/lightdm/.config/dconf/user ~/.config/dconf/lightdm
  printf %s\\n "user-db:lightdm" > ~/db_profile_lightdm
  export ONSCREEN_KBD=$(DCONF_PROFILE=~/db_profile_lightd

[Touch-packages] [Bug 1355025] Re: After suspend/resume, no sound with pulseaudio

2014-11-09 Thread yoyoma2
Found a workaround to this bug:

http://askubuntu.com/questions/507950/no-sound-in-ubuntu-14-04-x64

Steps to reproduce bug:

1) install playonlinux
2) install "Microsoft Spider Solitaire" inside playonlinux
3) run "Microsoft Spider Solitaire" (enable sound effects in Spider Solitaire 
options)
4) exit solitaire and playonlinux
5) suspend
= No sound after resume

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to pulseaudio in Ubuntu.
https://bugs.launchpad.net/bugs/1355025

Title:
  After suspend/resume, no sound with pulseaudio

Status in “pulseaudio” package in Ubuntu:
  Confirmed

Bug description:
  HI,

  I've remarked the following bug, at least under KDE :
  DO : open your KDE session
  DO : launch an app which has not been set compliant with pulseaudio (for 
example, Skype 4.2, but in that case you need to log into the service so that 
it plays a sound - issue no longer reproducible with 4.3. This also works with 
Steam games like Civ5)
  DO : quit the app
  DO : suspend
  DO : wait some time, for example 15 minutes
  DO : resume
  DO : try to trigger a sound, anything (the sound tester applet in KDE is 
enough)
  EXPECT : you hear sound
  ACTUAL : no sound at all. Note that if you run pulseaudio -k, sound is 
partially restored... only for KDE apps. The only way to restore sound 
completely is to logout/login

  Reproducibility : always
  Tested on Kubuntu Trusty AMD64

  My hardware :
  AMD Phenom x4 9850
  8 GB RAM
  Asus M2N-SLI Deluxe
  NVidia GeForce 660 Ti

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: pulseaudio 1:4.0-0ubuntu11
  ProcVersionSignature: Ubuntu 3.13.0-32.57-generic 3.13.11.4
  Uname: Linux 3.13.0-32-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.14.1-0ubuntu3.3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  julien 4967 F pulseaudio
julien31643 F pulseaudio
   /dev/snd/controlC0:  julien 4967 F pulseaudio
julien31643 F pulseaudio
  CurrentDesktop: KDE
  Date: Mon Aug 11 08:42:19 2014
  SourcePackage: pulseaudio
  UpgradeStatus: Upgraded to trusty on 2014-03-20 (143 days ago)
  dmi.bios.date: 10/02/2008
  dmi.bios.vendor: Phoenix Technologies, LTD
  dmi.bios.version: ASUS M2N-SLI DELUXE ACPI BIOS Revision 1701
  dmi.board.name: M2N-SLI DELUXE
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: 1.XX
  dmi.chassis.asset.tag: 123456789000
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnPhoenixTechnologies,LTD:bvrASUSM2N-SLIDELUXEACPIBIOSRevision1701:bd10/02/2008:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnM2N-SLIDELUXE:rvr1.XX:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.name: System Product Name
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/1355025/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp