Skip to content
#

gui

Here are 5,377 public repositories matching this topic...

imgui
ocornut
ocornut commented Oct 15, 2019

Some changes have been made to the main Readme (which appears when landing on the github webpage) and the FAQ. This is a post to notify people, gather some interest and suggestions.

Thanks to @ker0chan for her help on the Readme (lots more feedback that I haven't processed yet) and @ButternCream for his help working on the FAQ.

apengwin
apengwin commented Feb 6, 2020
  • I have marked all applicable categories:
    • exception-raising bug
    • [ x] visual output bug
    • documentation request (i.e. "X is missing from the documentation." If instead I want to ask "how to use X?" I understand [StackOverflow#tqdm] is more appropriate)
    • new feature request
  • [ x] I have visited the [source website], and in particular
    read the [known iss
dbeaver
rojares
rojares commented Dec 2, 2018

Now you can view common image files inside DBeaver when editing table data. You can open/save the binary data from/to filesystem. What would be very useful is the ability to open a CLOB value in external editor. For example storing pdf files into database would become convenient because the user could open the value in a pdf reader to check the contents of the value. Opening in external editor wou

yew
jstarry
jstarry commented Feb 26, 2020

Problem
It's possible that a developer retains a reference to a node ref that has been unmounted. To prevent the reference of an unmounted html element, Yew should be sure to clear the NodeRef when unmounting.

Suggested Fix

  1. Set vtag's node ref to None in its VDiff::detach impl
  2. Set vcomp's node ref to None in the DestroyComponent runnable
cjbrowne
cjbrowne commented Nov 9, 2019

Describe the bug
Using application.NewWindow to create a secondary window, it's not possible to re-use that window after it has been closed. If the user presses the X button, the window doesn't respond to Show() calls any more.

To Reproduce

  1. Create a main window
  2. Create a secondary window
  3. Close the secondary window
  4. Attempt to re-show the secondary window.

Example co

shivpatel
shivpatel commented Dec 8, 2019

I'll try to PR updates to the README.md file. In the meantime, making this ticket with the correct directions for anyone trying to build the latest release for themselves:

  1. npm run pack. Quit the process once the webpack analyzer graphic pops up.
  2. node bin/pack.js
  3. Don't worry about Unhandled rejection Error: No identity found for signing. error.
  4. Packaged app ready at `dist/
gdbgui
ak1raxyz
ak1raxyz commented May 18, 2019

部署在服务端, AriaNg 1.1.0

Nginx 开启 add_header X-Content-Type-Options "nosniff" always; 后导致浏览器拒绝加载静态资源的错误, 具体看 console 提示:

Creating Application Cache with manifest https://example.com/aria2/index.manifest
example.com/:1 Application Cache Checking event
example.com/:1 Application Cache Downloading event
example.com/:1 Refused to apply style from 'https://example.com/aria2/css/bootstrap-3.4.
fhennig
fhennig commented Nov 21, 2019

It would be great if it was possible to start this tool without it daemonizing automatically. A simple flag like --one-shot or --no-daemon would be nice for that.

And/or it would be great to hear why the decision was made to have a daemon for a screenshot tool, since to me this seems like a perfect utility to be a one-shot application.

blncd
blncd commented Jan 3, 2020
  1. Example graphics for UI elements would provide a better overview.

  2. The documentation would be clearer if the methods of the classes were divided into different "categories" as in the Qt documentation:

  • methods of the respective class
  • slots
  • signals / events
  • inherited methods / properties from other classes
  1. An overview that shows which of the respective properties, method
kjk
kjk commented Jul 13, 2019

Consider replacing drawStuff() in examples\drawing\drawing.go with the following code:

func testDraw(canvas *walk.Canvas) {
	font, err := walk.NewFont("MS Shell Dlg 2", 12, 0)
	if err != nil {
		panic(err)
	}
	col := walk.RGB(0, 0, 0)
	y := 8
	n := 8
	dx := canvas.Bounds().Width / n
	x := 0
	for i := 0; i < n; i++ {
		format := walk.TextLeft | walk.TextTop
		b := canvas.Bound
legrostdg
legrostdg commented Jan 9, 2018

~/.config/youtube-dlg should just contain configuration files and not logs (which should go to $XDG_DATA_HOME/youtube-dlg/ ) nor youtube-dl binary (which should go to $XDG_CACHE_HOME).

Please also consider using appdirs instead of hardcoding ~/.config/

hiiamboris
hiiamboris commented Feb 21, 2020

Describe the bug

>> i: make image! 2x2
== make image! [2x2 #{FFFFFFFFFFFFFFFFFFFFFFFF}]
>> i/alpha
== #{00000000}
>> i/alpha: 1 i/alpha
== #{01010101}
>> i/alpha: -1 i/alpha
== #{FFFFFFFF}           ;) expected #{00000000}
>> i/alpha: 255 i/alpha
== #{FFFFFFFF}
>> i/alpha: 256 i/alpha
== #{00000000}           ;) expected #{FFFFFFFF}

Expected behavior

Alpha val

any35
any35 commented Mar 20, 2020

I was in trouble when managing my document with mongo express.

It cannot show the detail of a document which have number type id.

repro steps:

  1. insert a doc with a number type id
{
    "_id": 123456,
    "message": "another field"
}
  1. find the document we just insert above and click it
  2. an error is shown on the screen: Document not found!

can anybody help?

Improve this page

Add a description, image, and links to the gui topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the gui topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.