Skip to main content
AI Assist is now on Stack Overflow. Start a chat to get instant answers from across the network. Sign up to save and share your chats.
Advice
0 votes
2 replies
67 views

If you're a hobbyist programmer like me, perhaps you have had need to build Qt6 from source so that you can include the proprietary codecs needed to play audio and video from web pages loaded through ...
Jeremy Wilson's user avatar
1 vote
1 answer
86 views

I've created a custom qlabel using pyqt, however the text is slightly uneven when rotated. I've attached a picture of this vs an unrotated label. I've tried fixing it with setRenderHint Antialiasing, ...
GYA007's user avatar
  • 61
1 vote
0 answers
60 views

Does anyone know how to remove this white space? This is my current stylesheet: QTableView { background-color: #EEEEEE; } QTableView::item { background-color: transparent; } QHeaderView::...
Shadow_Guo's user avatar
3 votes
1 answer
85 views

I am trying to have a Pen Tool in my pyqt6 application. I am trying to make it how Inkscape's PenTool works. For now, I am trying to achieve the 'B-Spline' mode. The issue is that my curve does not ...
Tom's user avatar
  • 75
1 vote
0 answers
49 views

I've been hobby writing a little budget tool for myself over the last few months, and have finally gotten some ok functionality. Decided to polish it a bit and make it act more like a GUI app. Running ...
zoagold's user avatar
  • 21
2 votes
1 answer
117 views

I have a main layout in PyQt6 with a left and right side (QHBoxLayout containing two elements). I want both sides to always be 50% of the main window width. However, when a widget on the left side ...
Tomper's user avatar
  • 100
1 vote
0 answers
147 views

Summary I am generating an EXE for a Python project using Pyinstaller. I am using Powershell on Windows 11 and a Python 3.11 in a Poetry virtual environment. I keep encountering the following error ...
AGA's user avatar
  • 80
2 votes
0 answers
163 views

In pyqt6, i am creating a fillable form. I'd like the first element in the form, the title, to be 25% larger than the rest of the elements in the form. In CSS, i'd do this by setting: {font-size: 1....
ask53's user avatar
  • 41
0 votes
0 answers
80 views

I am making an editor using Python and PyQt6. I have the same code that works for Windows, but when I run the code on Arch Linux, I get this error when importing QWebEngine: from PyQt6....
Scxve Ve's user avatar
1 vote
0 answers
43 views

There's a difference in behaviour between QTableView and QTreeView when it comes to selecting multiple items by dragging the mouse. In a QTreeView you can start outside the populated area and drag ...
mahkitah's user avatar
  • 1,024
1 vote
0 answers
61 views

I'm creating pyqt6 app where I can replace normal fonts/text with svg fonts(.svg files like a.svg, b.svg etc). My issue is with word-wrap. In normal mode(svg mode is disabled) QTextEdit correctly ...
Tom's user avatar
  • 75
2 votes
0 answers
107 views

I have the following PySide6 code import sys from PySide6.QtWidgets import (QApplication, QWidget, QPushButton, QVBoxLayout, QHBoxLayout, QLabel) class Window(QWidget): def __init__(...
Anonimista's user avatar
1 vote
0 answers
67 views

I have this Ruler class Right now the scale looks like the below image. I want the ticks to have their roots towards the view instead of having them outwards. The base of the scale should be inside. I ...
Tom's user avatar
  • 75
1 vote
1 answer
68 views

I included Qt 6.9.1 header files and pybind11/pybind11.h in a same file. but then I use python to build a package.(the compiler is MSVC2022 x64 and I only use CMake) this is part of setup.py: import ...
admbrill's user avatar
0 votes
0 answers
63 views

I am trying to create a UI that resembles OpenAI's, where code and markdown snippets follow each other and markdown and the code are parsed/syntax highlighted accordingly. I've been using PyQt6 and my ...
P0sitive's user avatar

15 30 50 per page
1
2 3 4 5
66